From 8926ff69b174780b4182269642105532f1958bce Mon Sep 17 00:00:00 2001 From: Matiss Janis Aboltins <matiss@mja.lv> Date: Sun, 1 Sep 2024 18:26:57 +0100 Subject: [PATCH] :bug: fix long payee name overflow (#3340) --- .../src/components/transactions/TransactionsTable.jsx | 4 ++-- upcoming-release-notes/3340.md | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 upcoming-release-notes/3340.md diff --git a/packages/desktop-client/src/components/transactions/TransactionsTable.jsx b/packages/desktop-client/src/components/transactions/TransactionsTable.jsx index ab2a687bb..1e391ff87 100644 --- a/packages/desktop-client/src/components/transactions/TransactionsTable.jsx +++ b/packages/desktop-client/src/components/transactions/TransactionsTable.jsx @@ -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> + </> ); }} > diff --git a/upcoming-release-notes/3340.md b/upcoming-release-notes/3340.md new file mode 100644 index 000000000..0d29a8deb --- /dev/null +++ b/upcoming-release-notes/3340.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [MatissJanis] +--- + +Fix long payee names overflowing in transaction table. -- GitLab