Skip to content

Commit

Permalink
fix(ExportPopUp): close export after exporting
Browse files Browse the repository at this point in the history
  • Loading branch information
velomovies committed Nov 11, 2024
1 parent 2e779ed commit bea1735
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/ExportPopup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,11 @@ export default {
return layer.layer
}).join()
exportZip({ name: this.exportName, layers })
.finally(() => {
this.exporting = false
})
exportZip({ name: this.exportName, layers })
.finally(() => {
this.exporting = false
this.$emit('close')
})
}
}
}
Expand Down

0 comments on commit bea1735

Please sign in to comment.