Skip to content

Commit

Permalink
fix(click-outside): ignore mousedown from before element exists
Browse files Browse the repository at this point in the history
fixes #16684
  • Loading branch information
KaelWD committed May 2, 2023
1 parent d57187a commit cd88563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/directives/click-outside/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const ClickOutside = {

if (!el._clickOutside) {
el._clickOutside = {
lastMousedownWasOutside: true,
lastMousedownWasOutside: false,
}
}

Expand Down

0 comments on commit cd88563

Please sign in to comment.