From a570e292423785dd7532feb28facc46e4ade5e6d Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sat, 23 Aug 2025 14:08:04 +0200 Subject: [PATCH] Fix: fix crash --- src/UI/Map/PointRenderingLayer.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/UI/Map/PointRenderingLayer.ts b/src/UI/Map/PointRenderingLayer.ts index a0153389a..da2fdac74 100644 --- a/src/UI/Map/PointRenderingLayer.ts +++ b/src/UI/Map/PointRenderingLayer.ts @@ -231,7 +231,8 @@ export class PointRenderingLayer { let store: Store> if (this._fetchStore) { store = this._fetchStore(feature.properties.id) - } else { + } + if(!store){ store = new ImmutableStore(feature.properties) } const { html, iconAnchor } = this._config.RenderIcon(store, { metatags: this._metatags })