From b61b5a48a3db2aafd896f7f0fcc03c297c4c300b Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Wed, 31 May 2023 10:22:37 +0200 Subject: [PATCH] Fix wrong assignement to const --- umap/static/umap/js/umap.controls.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index 8c1a5c0f..766c1611 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1259,7 +1259,7 @@ L.U.IframeExporter = L.Evented.extend({ build: function () { const iframeUrl = this.buildUrl() - const code = `` + let code = `` if (this.options.includeFullScreenLink) { code += `

${L._('See full screen')}

` }