mirror of
https://github.com/pocketbase/pocketbase.git
synced 2026-09-16 03:20:53 +02:00
normalized multiple to single field confirmation detection
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user