Skip to content

Commit 197d121

Browse files
committed
fix(VTreeview): apply hide-actions to group nodes
fixes #22919
1 parent 479435b commit 197d121

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/vuetify/src/components/VTreeview/VTreeviewChildren.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ export const VTreeviewChildren = genericComponent<new <T extends InternalListIte
152152

153153
const treeItemProps = {
154154
...itemProps as InternalListItem['props'] & { disabled?: boolean },
155+
hideActions: props.hideActions,
155156
indentLines: children ? indentLines.node : indentLines.leaf,
156157
}
157158

@@ -277,7 +278,6 @@ export const VTreeviewChildren = genericComponent<new <T extends InternalListIte
277278
<VTreeviewItem
278279
{ ...treeItemProps }
279280
hasCustomPrepend={ !!slots.prepend }
280-
hideActions={ props.hideActions }
281281
value={ props.returnObject ? toRaw(item.raw) : treeItemProps.value }
282282
v-slots={ slotsWithItem }
283283
/>

0 commit comments

Comments
 (0)