Skip to content

Commit

Permalink
Fixed error causing build failure (#1265)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josephsanya authored Nov 2, 2022
1 parent 2b743c7 commit 14423a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/edit/actions/ExportAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ L.ExportAction = L.EditAction.extend({
},

handleMouseLeave() {
if (!this.mouseLeaveSkip) {
this.renderExportIcon();
} else {
if (this.mouseLeaveSkip) {
this.mouseLeaveSkip = false;
} else {
this.renderExportIcon();
}
},

Expand Down

0 comments on commit 14423a0

Please sign in to comment.