fix: broken ctrl+i and ctrl+o

This commit is contained in:
Yohan Boniface 2024-12-02 17:10:06 +01:00
parent 401efc037d
commit 31c8bf95ba

View file

@ -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()