Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix payee cell overflowing when it contains an icon #4056

Merged
merged 2 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -358,14 +358,7 @@ function getPayeePretty(transaction, payee, transferAcct, numHiddenPayees = 0) {
alignItems: 'center',
}}
>
<div
style={{
overflow: 'hidden',
textOverflow: 'ellipsis',
}}
>
{formatPayeeName(transferAcct.name)}
</div>
{formatPayeeName(transferAcct.name)}
</View>
);
} else if (payee) {
Expand Down Expand Up @@ -706,7 +699,14 @@ function PayeeCell({
);

return (
<>
<div
style={{
overflow: 'hidden',
textOverflow: 'ellipsis',
display: 'flex',
alignItems: 'center',
}}
>
<PayeeIcons
transaction={transaction}
transferAccount={transferAccount}
Expand All @@ -732,7 +732,7 @@ function PayeeCell({
) : (
payeeName
)}
</>
</div>
);
}}
>
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/4056.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [matt-fidd]
---

Fix payee cell overflowing when it contains an icon
Loading