From 475c53a6883d80592793c02295db9f190d055081 Mon Sep 17 00:00:00 2001 From: James Lyne Date: Thu, 24 Feb 2022 20:44:17 +0000 Subject: [PATCH] Fix marker list icons --- src/components/list/MarkerListItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/list/MarkerListItem.vue b/src/components/list/MarkerListItem.vue index 1473e1d..eed78bc 100644 --- a/src/components/list/MarkerListItem.vue +++ b/src/components/list/MarkerListItem.vue @@ -59,7 +59,7 @@ export default defineComponent({ z: Math.round(props.marker.location.z), })), icon = computed(() => { - if('icon' in props.marker) { + if('iconUrl' in props.marker) { return (props.marker as LiveAtlasPointMarker).iconUrl; }