Skip to content

Commit

Permalink
fix: stop loading after error
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobasco99 committed Jun 6, 2023
1 parent f98c9e4 commit f0aebe0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/ProjectTagsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export default defineComponent({
showRemoveTagDialog.value = false;
inProgress.value = false;
});
inProgress.value = false;
};

const showAddTagDialog = ref(false);
Expand Down Expand Up @@ -198,6 +199,7 @@ export default defineComponent({
showAddTagDialog.value = false;
inProgress.value = false;
});
inProgress.value = false;
};

const showEditTagDialog = ref(false);
Expand Down Expand Up @@ -234,6 +236,7 @@ export default defineComponent({
showEditTagDialog.value = false;
inProgress.value = false;
});
inProgress.value = false;
};

return {
Expand Down

0 comments on commit f0aebe0

Please sign in to comment.