Skip to content

Commit

Permalink
chore: keep nested intact
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwu9145 committed Sep 22, 2024
1 parent d61e495 commit 391df6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/vuetify/src/composables/nested/nested.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export const useNested = (props: NestedProps) => {
let parent: unknown = id

while (parent != null) {
path.unshift(toRaw(parent))
path.unshift(parent)
parent = parents.value.get(parent)
}

Expand Down
2 changes: 1 addition & 1 deletion packages/vuetify/src/labs/VTreeview/VTreeview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const VTreeview = genericComponent<new <T>(
return [
...getPath(itemVal),
...getChildren(itemVal),
]
].map(toRaw)
}))
})

Expand Down

0 comments on commit 391df6d

Please sign in to comment.