From 89d68ea2f8a2499c1691d4ac91f3a3b2a722e070 Mon Sep 17 00:00:00 2001 From: Daniel Bates Date: Fri, 20 Feb 2026 04:32:13 -0800 Subject: [PATCH] Add tooltip to imported payee in rule result window (#7031) * Add tooltip to imported payee column in rule result window The imported payee column in SimpleTransactionsTable was missing a title attribute, so truncated text had no tooltip on hover. Other columns (category, account, notes) already pass title for this purpose. Fixes #7003 Co-Authored-By: Claude Opus 4.6 * Add release notes for #7031 Co-Authored-By: Claude Opus 4.6 --------- Co-authored-by: Your Name Co-authored-by: Claude Opus 4.6 --- .../src/components/transactions/SimpleTransactionsTable.tsx | 2 +- upcoming-release-notes/7031.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 upcoming-release-notes/7031.md diff --git a/packages/desktop-client/src/components/transactions/SimpleTransactionsTable.tsx b/packages/desktop-client/src/components/transactions/SimpleTransactionsTable.tsx index c0895abd88..ad4e8e4089 100644 --- a/packages/desktop-client/src/components/transactions/SimpleTransactionsTable.tsx +++ b/packages/desktop-client/src/components/transactions/SimpleTransactionsTable.tsx @@ -92,7 +92,7 @@ const TransactionRow = memo(function TransactionRow({ ); case 'imported_payee': return ( - + {transaction.imported_payee} ); diff --git a/upcoming-release-notes/7031.md b/upcoming-release-notes/7031.md new file mode 100644 index 0000000000..c489571e06 --- /dev/null +++ b/upcoming-release-notes/7031.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [danielalanbates] +--- + +Fix missing tooltip on imported payee column in rule result window