fix: btn save hide
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s

This commit is contained in:
Thanaphon Frappet 2025-06-27 14:24:10 +07:00
parent d831cd0799
commit 09f368f516
2 changed files with 4 additions and 1 deletions

View file

@ -46,6 +46,7 @@ defineProps<{
color="grey"
icon="mdi-close"
v-close-popup
@click="cancel"
/>
</div>

View file

@ -865,7 +865,9 @@ async function onSubmit(submitSelectedItem?: boolean) {
actionText: t('dialog.action.ok'),
persistent: true,
title: t('form.warning.title'),
cancel: () => {},
cancel: () => {
formType.value = 'create';
},
action: async () => {
await createBranch();
},