From 31c8bf95ba20927c97231ece9eb16f34f6cc15d0 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Mon, 2 Dec 2024 17:10:06 +0100 Subject: [PATCH] fix: broken ctrl+i and ctrl+o --- umap/static/umap/js/modules/umap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/umap/static/umap/js/modules/umap.js b/umap/static/umap/js/modules/umap.js index b06968276..281cc50c7 100644 --- a/umap/static/umap/js/modules/umap.js +++ b/umap/static/umap/js/modules/umap.js @@ -537,10 +537,10 @@ export default class Umap extends ServerStored { this._leafletMap.editTools.startPolyline() break case 'i': - this._leafletMap.importer.open() + this.importer.open() break case 'o': - this._leafletMap.importer.openFiles() + this.importer.openFiles() break case 'h': this.help.showGetStarted()