We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6838fe commit 22c8a29Copy full SHA for 22c8a29
packages/vuetify/src/composables/nested/nested.ts
@@ -222,7 +222,7 @@ export const useNested = (props: NestedProps) => {
222
}
223
224
const pathsToReveal = [...selected.value.keys()].map(getPath)
225
- .map(path => path.slice(0, -1))
+ .map(path => path.slice(0, -1).filter(v => !opened.value.has(v)))
226
.filter(path => path.length > 0)
227
.reduce(unique<unknown[]>, [])
228
0 commit comments