mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Fix type warning
This commit is contained in:
@@ -142,7 +142,7 @@ export function useGroupableParent(
|
||||
|
||||
watch(
|
||||
() => options?.mandatory?.value,
|
||||
(newValue: boolean, oldValue: boolean) => {
|
||||
(newValue, oldValue) => {
|
||||
if (isEqual(newValue, oldValue)) return;
|
||||
|
||||
// If you're required to select a value, make sure a value is selected on first render
|
||||
|
||||
Reference in New Issue
Block a user