From d1ed8b77cac6c7e2c532448e85ebe0ef2392fe9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 24 Jun 2024 18:53:45 +0200 Subject: [PATCH] fix(sync): pass the correct datalayer uuid --- umap/static/umap/js/umap.features.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/static/umap/js/umap.features.js b/umap/static/umap/js/umap.features.js index 6f9b1298..939629a4 100644 --- a/umap/static/umap/js/umap.features.js +++ b/umap/static/umap/js/umap.features.js @@ -6,7 +6,7 @@ U.FeatureMixin = { subject: 'feature', metadata: { id: this.id, - layerId: this.datalayer?.id || null, + layerId: this.datalayer?.umap_id || null, featureType: this.getClassName(), }, }