fix: refs #8372 ensure save operation completes before proceeding in FormModelPopup
This commit is contained in:
parent
e758df4a4c
commit
a289c548f8
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue