diff --git a/src/components/LocationOSMIDChip.vue b/src/components/LocationOSMIDChip.vue
index 7b31fddac90..15d92408e69 100644
--- a/src/components/LocationOSMIDChip.vue
+++ b/src/components/LocationOSMIDChip.vue
@@ -1,6 +1,6 @@
- {{ getLocationOSMID(location) }}
+ {{ getLocationUniqueID(location) }}
@@ -15,8 +15,8 @@ export default {
}
},
methods: {
- getLocationOSMID(location) {
- return utils.getLocationOSMID(location)
+ getLocationUniqueID(location) {
+ return utils.getLocationUniqueID(location)
},
}
}
diff --git a/src/components/LocationOSMTagChip.vue b/src/components/LocationOSMTagChip.vue
index 04b384ee7b6..7de7cdbc84b 100644
--- a/src/components/LocationOSMTagChip.vue
+++ b/src/components/LocationOSMTagChip.vue
@@ -1,6 +1,6 @@
- {{ getLocationCategory(location) }}
+ {{ getLocationTag(location) }}
@@ -15,8 +15,8 @@ export default {
}
},
methods: {
- getLocationCategory(location) {
- return utils.getLocationCategory(location)
+ getLocationTag(location) {
+ return utils.getLocationTag(location)
},
}
}
diff --git a/src/components/LocationSelectorDialog.vue b/src/components/LocationSelectorDialog.vue
index 86acd25b6f0..09fa5c881e2 100644
--- a/src/components/LocationSelectorDialog.vue
+++ b/src/components/LocationSelectorDialog.vue
@@ -45,7 +45,7 @@
-
+
{{ getLocationTitle(location, true, false, false) }}
{{ getLocationTitle(location, false, true, true) }}
- {{ getLocationCategory(location) }}
+ {{ getLocationTag(location) }}
@@ -92,7 +92,7 @@