Skip to content

Commit

Permalink
🐛 Fix tooltip when using touch devices (#3342)
Browse files Browse the repository at this point in the history
* fix tooltip when using touch devices

* release notes
  • Loading branch information
MikesGlitch authored Sep 2, 2024
1 parent 2a9546c commit 6454c10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/desktop-client/src/components/common/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ export const Tooltip = ({
<View
style={{ minHeight: 'auto' }}
ref={triggerRef}
onPointerEnter={handlePointerEnter}
onPointerLeave={handlePointerLeave}
onMouseEnter={handlePointerEnter}
onMouseLeave={handlePointerLeave}
>
<TooltipTrigger
isOpen={isHovered && !triggerProps.isDisabled}
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/3342.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MikesGlitch]
---

Prevent tooltips showing on budget notes when using touch devices

0 comments on commit 6454c10

Please sign in to comment.