8713-testToMaster #1539

Merged
alexm merged 118 commits from 8713-testToMaster into master 2025-03-04 06:57:15 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 967848c790 - Show all commits

View File

@ -185,7 +185,7 @@ async function saveChanges(data) {
changes = await $props.beforeSaveFn(changes, getChanges);
}
try {
if (changes.creates.length === 0 && changes.updates.length === 0) {
if (changes?.creates?.length === 0 && changes?.updates?.length === 0) {
return;
}