mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 18:00:06 -05:00
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:
@@ -92,7 +92,7 @@ const TransactionRow = memo(function TransactionRow({
|
|||||||
);
|
);
|
||||||
case 'imported_payee':
|
case 'imported_payee':
|
||||||
return (
|
return (
|
||||||
<Field key={i} width="flex">
|
<Field key={i} width="flex" title={transaction.imported_payee}>
|
||||||
{transaction.imported_payee}
|
{transaction.imported_payee}
|
||||||
</Field>
|
</Field>
|
||||||
);
|
);
|
||||||
|
|||||||
6
upcoming-release-notes/7031.md
Normal file
6
upcoming-release-notes/7031.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
category: Bugfix
|
||||||
|
authors: [danielalanbates]
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix missing tooltip on imported payee column in rule result window
|
||||||
Reference in New Issue
Block a user