8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +00:00
1 changed files with 7 additions and 11 deletions
Showing only changes of commit 2cc04da76c - Show all commits

View File

@ -154,18 +154,14 @@ function filter(value, update, filterOptions) {
}
async function onSubmit() {
try {
if (!hasChanges.value) {
return quasar.notify({
type: 'negative',
message: t('globals.noChanges'),
});
}
isLoading.value = true;
await saveChanges($props.saveFn ? formData.value : null);
} catch (e) {
throw e;
if (!hasChanges.value) {
return quasar.notify({
type: 'negative',
message: t('globals.noChanges'),
});
}
isLoading.value = true;
await saveChanges($props.saveFn ? formData.value : null);
}
async function onSubmitAndGo() {