normalized multiple to single field confirmation detection

This commit is contained in:
Gani Georgiev
2026-01-06 18:33:44 +02:00
parent 98510103c3
commit 352ee72740
31 changed files with 40 additions and 40 deletions

View File

@@ -34,7 +34,7 @@
if (!old) {
return false;
}
return old.maxSelect != 1 && field.maxSelect == 1;
return old.maxSelect > 1 && field.maxSelect <= 1;
}) || [];
$: showChanges = !isNewCollectionView || isCollectionRenamed || changedRules.length;