fix: refs #8372 ensure save operation completes before proceeding in FormModelPopup

This commit is contained in:
Jorge Penadés 2025-02-18 16:25:30 +01:00
parent e758df4a4c
commit a289c548f8
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ const onDataSaved = (formData, requestResponse) => {
const onClick = async () => {
isSaveAndContinue.value = true;
formModelRef.value.save();
await formModelRef.value.save();
};
const isLoading = computed(() => formModelRef.value?.isLoading);