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() this._leafletMap.editTools.startPolyline()
break break
case 'i': case 'i':
this._leafletMap.importer.open() this.importer.open()
break break
case 'o': case 'o':
this._leafletMap.importer.openFiles() this.importer.openFiles()
break break
case 'h': case 'h':
this.help.showGetStarted() this.help.showGetStarted()