From fbd1097a0c883226bc8c1de19c62df341c762401 Mon Sep 17 00:00:00 2001 From: Trevor Farlow <trevdor@users.noreply.github.com> Date: Fri, 15 Sep 2023 07:25:19 -0600 Subject: [PATCH] :bug: Mobile account transaction list: Fix sticky date section headers (#1698) --- .../src/components/transactions/MobileTransaction.js | 2 -- upcoming-release-notes/1698.md | 6 ++++++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 upcoming-release-notes/1698.md diff --git a/packages/desktop-client/src/components/transactions/MobileTransaction.js b/packages/desktop-client/src/components/transactions/MobileTransaction.js index e5d7b45b3..c5247eb9b 100644 --- a/packages/desktop-client/src/components/transactions/MobileTransaction.js +++ b/packages/desktop-client/src/components/transactions/MobileTransaction.js @@ -1069,7 +1069,6 @@ export class TransactionList extends Component { label="" loadMore={onLoadMore} selectionMode="none" - style={{ flex: '1 auto', height: '100%', overflowY: 'auto' }} > {sections.length === 0 ? ( <Section> @@ -1162,7 +1161,6 @@ function ListBox(props) { padding: 0, listStyle: 'none', margin: 0, - overflowY: 'auto', width: '100%', }} > diff --git a/upcoming-release-notes/1698.md b/upcoming-release-notes/1698.md new file mode 100644 index 000000000..6dd94533e --- /dev/null +++ b/upcoming-release-notes/1698.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [trevdor] +--- + +Mobile account transaction list: Restore sticky date section headers -- GitLab