mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 10:14:53 -05:00
🐛 fix long payee name overflow (#3340)
This commit is contained in:
committed by
GitHub
parent
340169bfb6
commit
8926ff69b1
@@ -683,7 +683,7 @@ function PayeeCell({
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={{ display: 'flex', alignItems: 'center' }}>
|
<>
|
||||||
<PayeeIcons
|
<PayeeIcons
|
||||||
transaction={transaction}
|
transaction={transaction}
|
||||||
transferAccount={transferAccount}
|
transferAccount={transferAccount}
|
||||||
@@ -709,7 +709,7 @@ function PayeeCell({
|
|||||||
) : (
|
) : (
|
||||||
payeeName
|
payeeName
|
||||||
)}
|
)}
|
||||||
</div>
|
</>
|
||||||
);
|
);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|||||||
6
upcoming-release-notes/3340.md
Normal file
6
upcoming-release-notes/3340.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
category: Bugfix
|
||||||
|
authors: [MatissJanis]
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix long payee names overflowing in transaction table.
|
||||||
Reference in New Issue
Block a user