🐛 fix long payee name overflow (#3340)

This commit is contained in:
Matiss Janis Aboltins
2024-09-01 18:26:57 +01:00
committed by GitHub
parent 340169bfb6
commit 8926ff69b1
2 changed files with 8 additions and 2 deletions

View File

@@ -683,7 +683,7 @@ function PayeeCell({
);
return (
<div style={{ display: 'flex', alignItems: 'center' }}>
<>
<PayeeIcons
transaction={transaction}
transferAccount={transferAccount}
@@ -709,7 +709,7 @@ function PayeeCell({
) : (
payeeName
)}
</div>
</>
);
}}
>

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MatissJanis]
---
Fix long payee names overflowing in transaction table.