Skip to content

Commit

Permalink
fix(Tooltip): tooltip was showing for a split second
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Aug 20, 2024
1 parent 0bfc28f commit 78fc32f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/radix-vue/src/Tooltip/TooltipTrigger.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ onMounted(() => {
})
function handlePointerUp() {
isPointerDown.value = false
setTimeout(() => {
isPointerDown.value = false
}, 1)
}
function handlePointerDown() {
Expand Down

0 comments on commit 78fc32f

Please sign in to comment.