Skip no-op saves in the edit dialogs; clear a stale model-spec error
Build image / build-and-push (push) Successful in 26s

A Save that changed nothing still sent a PATCH, which bumped the row's
version and landed an "Edited garden settings" step in History that undid
nothing — the drift is gone since the last commit, but the write was still
there. Both dialogs now close without a request when every field matches
the loaded row.

In Settings, a rejected model spec's reason stayed under the field after
the field was blanked back to the saved value; committing an unchanged
value now clears it.

Co-Authored-By: Claude Fable 5 <[email protected]>
This commit is contained in:
2026-08-22 22:22:22 -04:00
co-authored by Claude Fable 5
parent 27f658c1f7
commit 157e04ed24
3 changed files with 16 additions and 0 deletions
@@ -99,6 +99,12 @@ export function PlantDialog({
vendor: vendor.trim(),
notes: notes.trim(),
}
// Nothing changed: close without a request, so a look-and-Save doesn't bump
// the version for every garden that shares the plant.
if (isEdit && (Object.keys(input) as (keyof PlantInput)[]).every((k) => input[k] === (k === 'color' ? expandHex(plant.color) : plant[k]))) {
onClose()
return
}
try {
if (isEdit) await update.mutateAsync({ id: plant.id, ...input, version })
else await create.mutateAsync(input)