#7356 - TicketServices and CrudModel updates #1479

Merged
jsegarra merged 6 commits from 7356_ticketService into test 2025-03-03 12:06:24 +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); changes = await $props.beforeSaveFn(changes, getChanges);
} }
try { try {
if (changes.creates.length === 0 && changes.updates.length === 0) { if (changes?.creates?.length === 0 && changes?.updates?.length === 0) {
return; return;
} }