From 80454d9415db9bd536e9910ddc079df245988f37 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 19 Feb 2026 11:50:56 -0800 Subject: [PATCH 1/2] 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 --- .../src/components/transactions/SimpleTransactionsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/desktop-client/src/components/transactions/SimpleTransactionsTable.tsx b/packages/desktop-client/src/components/transactions/SimpleTransactionsTable.tsx index c0895abd885..ad4e8e40892 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} ); From 965bc3c2890633757b423d0dea51937824a2acf8 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 19 Feb 2026 12:05:50 -0800 Subject: [PATCH 2/2] Add release notes for #7031 Co-Authored-By: Claude Opus 4.6 --- upcoming-release-notes/7031.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 upcoming-release-notes/7031.md diff --git a/upcoming-release-notes/7031.md b/upcoming-release-notes/7031.md new file mode 100644 index 00000000000..c489571e062 --- /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