Hotfix[CustomerAddress]: Fixed buttons disabled when there are no changes #1641

Merged
jon merged 8 commits from Hotfix-CustomerAddress into master 2025-04-01 06:08:12 +00:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit e353f7916a - Show all commits

View File

@ -105,8 +105,7 @@ function cleanPayload(payload) {
payload[prop] = payload[prop].filter(
(item) => item.description !== '' && item.observationTypeFk !== '',
);
}
if (prop === 'deletes') {
} else {
payload[prop] = payload[prop].filter(
(item) => item !== null && item !== undefined,
);