Stitch all scans button, and refresh scan tab when closing modals

This commit is contained in:
jaknapper 2025-07-25 16:52:37 +01:00
parent 37a28af04a
commit 7ac77c3e89
4 changed files with 41 additions and 2 deletions

View file

@ -344,10 +344,12 @@ export default {
hideModal() {
UIkit.modal(this.$refs.statusModal).hide();
this.$root.$emit("modalClosed");
},
terminateTask: function() {
axios.delete(this.taskUrl, { baseURL: this.$store.getters.baseUri });
this.$root.$emit("modalClosed");
}
}
};