diff --git a/src/modules/infobox/components/styling/DrawingStyleIconSelector.vue b/src/modules/infobox/components/styling/DrawingStyleIconSelector.vue index 20c87f621..1518d3f86 100644 --- a/src/modules/infobox/components/styling/DrawingStyleIconSelector.vue +++ b/src/modules/infobox/components/styling/DrawingStyleIconSelector.vue @@ -158,7 +158,9 @@ export default { }, mounted() { const iconSetNameToLookup = this.feature?.icon ? this.feature.icon.iconSetName : 'default' - this.currentIconSet = this.iconSets.find((iconSet) => iconSet.name === iconSetNameToLookup) + this.currentIconSet = + this.iconSets.find((iconSet) => iconSet.name === iconSetNameToLookup) || + this.iconSets.find((iconSet) => iconSet.name === 'default') }, methods: { /**