fix: broken ctrl+i and ctrl+o (#2322)

This commit is contained in:
Yohan Boniface 2024-12-02 17:19:53 +01:00 committed by GitHub
commit 177a4edc1d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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