From f217c1d63c2eb10f6f77ac71f9f5f7c9b8397235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Tue, 11 Jul 2023 12:22:07 +0200 Subject: [PATCH] Replace `properties.about` by `properties.description` on map --- webapp/pages/map.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/webapp/pages/map.vue b/webapp/pages/map.vue index 8fffad1cf..1db2b189a 100644 --- a/webapp/pages/map.vue +++ b/webapp/pages/map.vue @@ -290,11 +290,11 @@ export default { ` description += - e.features[0].properties.about && e.features[0].properties.about.length > 0 + e.features[0].properties.description && e.features[0].properties.description.length > 0 ? `
- ${e.features[0].properties.about} + ${e.features[0].properties.description}
` : '' @@ -372,7 +372,7 @@ export default { id: user.id, slug: user.slug, name: user.name, - about: user.about ? user.about : undefined, + description: user.about ? user.about : undefined, }, geometry: { type: 'Point', @@ -392,7 +392,7 @@ export default { id: this.currentUser.id, slug: this.currentUser.slug, name: this.currentUser.name, - about: this.currentUser.about ? this.currentUser.about : undefined, + description: this.currentUser.about ? this.currentUser.about : undefined, }, geometry: { type: 'Point', @@ -412,7 +412,7 @@ export default { id: group.id, slug: group.slug, name: group.name, - about: group.about ? group.about : undefined, + description: group.about ? group.about : undefined, }, geometry: { type: 'Point', @@ -433,7 +433,7 @@ export default { id: post.id, slug: post.slug, name: post.title, - about: post.contentExcerpt, + description: post.contentExcerpt, }, geometry: { type: 'Point',