Skip to content

Commit

Permalink
Fixed error causing build failure (publiclab#1265)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josephsanya authored and vanithaak committed Nov 5, 2022
1 parent 84062f7 commit 8185c23
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 8185c23

Please sign in to comment.