Skip to content

Commit

Permalink
Fix: #3719: Imported payee overflowing on transaction record (#3753)
Browse files Browse the repository at this point in the history
* Modified tooltip to have set width to avoid overflow issue on imported payee records

* Added release note

* Fixed release note file name
  • Loading branch information
JahJoey authored Nov 4, 2024
1 parent a267e3a commit 59d685f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/desktop-client/src/components/common/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const Tooltip = ({

return (
<View
style={{ minHeight: 'auto', flexShrink: 0 }}
style={{ minHeight: 'auto', flexShrink: 0, maxWidth: '100%' }}
ref={triggerRef}
onMouseEnter={handlePointerEnter}
onMouseLeave={handlePointerLeave}
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/3753.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [JahJoey]
---

Fixed overflowing text on transaction records when imported payee has an extra long name

0 comments on commit 59d685f

Please sign in to comment.