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 <noreply@anthropic.com>

* Add release notes for #7031

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Your Name <your-email@example.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Daniel Bates
2026-02-20 04:32:13 -08:00
committed by GitHub
parent 1ad7b6f781
commit 89d68ea2f8
2 changed files with 7 additions and 1 deletions

View File

@@ -92,7 +92,7 @@ const TransactionRow = memo(function TransactionRow({
);
case 'imported_payee':
return (
<Field key={i} width="flex">
<Field key={i} width="flex" title={transaction.imported_payee}>
{transaction.imported_payee}
</Field>
);

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [danielalanbates]
---
Fix missing tooltip on imported payee column in rule result window