Skip to content

Commit

Permalink
fix: broken ctrl+i and ctrl+o (#2322)
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanboniface authored Dec 2, 2024
2 parents d9998ef + 31c8bf9 commit 177a4ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions umap/static/umap/js/modules/umap.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 177a4ed

Please sign in to comment.