Skip to content

Commit 683dc86

Browse files
committed
fix(VTreeview): don't display expanded items as activated
fixes #21721 closes #21724
1 parent 71b8240 commit 683dc86

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/vuetify/src/components/VList/VListGroup.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ export const VListGroup = genericComponent<VListGroupSlots>()({
8181
const toggleIcon = computed(() => isOpen.value ? props.collapseIcon : props.expandIcon)
8282
const activatorDefaults = computed(() => ({
8383
VListItem: {
84-
active: isOpen.value,
8584
activeColor: props.activeColor,
8685
baseColor: props.baseColor,
8786
color: props.color,

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export const VTreeviewGroup = genericComponent<VListGroupSlots>()({
2929
VTreeviewItem: {
3030
prependIcon: undefined,
3131
appendIcon: undefined,
32-
active: vListGroupRef.value?.isOpen,
3332
toggleIcon: toggleIcon.value,
3433
},
3534
}))

0 commit comments

Comments
 (0)