From 8f9d1c69931999274ec2b314b3e5951d95a985f3 Mon Sep 17 00:00:00 2001 From: cnouguier Date: Fri, 27 Sep 2024 16:42:13 +0200 Subject: [PATCH] wip: Provide a location map card that fits the layout of the KTimeLine component #958 --- .../components/location/KLocationTimeLineCard.vue | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/map/client/components/location/KLocationTimeLineCard.vue b/map/client/components/location/KLocationTimeLineCard.vue index 1961a9c03..cb7998aff 100644 --- a/map/client/components/location/KLocationTimeLineCard.vue +++ b/map/client/components/location/KLocationTimeLineCard.vue @@ -37,7 +37,7 @@ />
-
+
{{ item.location.properties.name }}
+
@@ -54,6 +58,10 @@ text="KLocationCardSection.NO_LOCATION" />
+
@@ -103,6 +111,9 @@ export default { computed: { descriptionActions () { return _.filter(this.itemActions, { scope: 'description' }) + }, + locationActions () { + return _.filter(this.itemActions, { scope: 'location' }) } } }