Skip to content

Commit

Permalink
fix(v-tooltip): match provides from new vnode
Browse files Browse the repository at this point in the history
fixes #20564
  • Loading branch information
KaelWD committed Oct 11, 2024
1 parent ef13e28 commit 6e9f2a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/composables/directiveComponent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function findComponentParent (vnode: VNode, root: ComponentInternalInstance): Co
for (const child of children) {
if (!child) continue

if (child === vnode) {
if (child === vnode || (child.el && vnode.el && child.el === vnode.el)) {
return true
}

Expand Down

0 comments on commit 6e9f2a1

Please sign in to comment.