From daeaf093f13675166f09f30728fb15a899b7348c Mon Sep 17 00:00:00 2001 From: 3st3ban3 Date: Sun, 3 Dec 2023 17:45:17 +0100 Subject: [PATCH] fix: no data in facet filters when set as default panel --- umap/static/umap/js/umap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/static/umap/js/umap.js b/umap/static/umap/js/umap.js index 4cf6f74ef..44be35cc6 100644 --- a/umap/static/umap/js/umap.js +++ b/umap/static/umap/js/umap.js @@ -937,7 +937,7 @@ L.U.Map.include({ }, openFacet: function () { - this.onceDatalayersLoaded(function () { + this.onceDataLoaded(function () { this._openFacet() }) },