]> git.openstreetmap.org Git - nominatim-ui.git/commitdiff
Further ignore yes (e.g. building=yes) as type when printing results
authormarc tobias <mtmail@gmx.net>
Thu, 20 Feb 2020 17:18:32 +0000 (18:18 +0100)
committermarc tobias <mtmail@gmx.net>
Thu, 20 Feb 2020 17:18:32 +0000 (18:18 +0100)
src/handlebar_helpers.js

index 088d09cbd8ec62b8cff4a4ecfbff318c46d354d2..b4589ed5ad62318145b14c92fe120d1d839193c9 100644 (file)
@@ -112,8 +112,10 @@ Handlebars.registerHelper({
 
     if (aPlace.type && aPlace.type === 'yes' && aPlace.class) {
       return capitalize(aPlace.class.replace(/_/g, ' '));
+    } else if (aPlace.class) {
+      return capitalize(aPlace.type.replace(/_/g, ' '));
     }
-    return capitalize(aPlace.type.replace(/_/g, ' '));
+    return '';
   },
   formatSearchRank: function (iRank) {
     // same as