mirror of
https://github.com/directus/directus.git
synced 2026-01-28 21:47:56 -05:00
Fix tree-select not allowing groups to be opened in selection mode
This commit is contained in:
@@ -133,7 +133,8 @@ export default defineComponent({
|
||||
(child) =>
|
||||
props.modelValue.includes(child[props.itemValue]) ||
|
||||
childrenHaveValueMatch(child[props.itemChildren]) ||
|
||||
props.modelValue.includes(props.parentValue)
|
||||
props.modelValue.includes(props.parentValue) ||
|
||||
props.modelValue.includes(props.value)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user