Fix marker list icons

This commit is contained in:
James Lyne 2022-02-24 20:44:17 +00:00
parent bd13e67f48
commit 475c53a688

View File

@ -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;
}