From 6c9da133206a18a4f5d05b95a0c77316cd008b1f Mon Sep 17 00:00:00 2001 From: Raphael Odini Date: Fri, 31 May 2024 17:24:40 +0200 Subject: [PATCH] Renaming --- src/components/LocationOSMIDChip.vue | 6 +++--- src/components/LocationOSMTagChip.vue | 6 +++--- src/components/LocationSelectorDialog.vue | 16 ++++++++-------- src/utils.js | 8 ++++---- src/views/AddPriceMultiple.vue | 6 +++--- src/views/AddPriceSingle.vue | 6 +++--- 6 files changed, 24 insertions(+), 24 deletions(-) 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 @@ @@ -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 @@ @@ -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 @@