From 3e4133f06631c1b7fffc6ecd6f1c13af28f4c2e4 Mon Sep 17 00:00:00 2001 From: Matiss Janis Aboltins Date: Tue, 22 Aug 2023 20:34:51 +0100 Subject: [PATCH] :bug: reset reconciliation status when switching accounts (#1547) Closes #1327 --- packages/desktop-client/src/components/accounts/Account.js | 1 + upcoming-release-notes/1547.md | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 upcoming-release-notes/1547.md diff --git a/packages/desktop-client/src/components/accounts/Account.js b/packages/desktop-client/src/components/accounts/Account.js index 7bc4852e0ec..796b97f1585 100644 --- a/packages/desktop-client/src/components/accounts/Account.js +++ b/packages/desktop-client/src/components/accounts/Account.js @@ -425,6 +425,7 @@ class AccountInternal extends PureComponent { showBalances: nextProps.showBalances, balances: null, showCleared: nextProps.showCleared, + reconcileAmount: null, }, () => { this.fetchTransactions(); diff --git a/upcoming-release-notes/1547.md b/upcoming-release-notes/1547.md new file mode 100644 index 00000000000..c2d1c9f966d --- /dev/null +++ b/upcoming-release-notes/1547.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [MatissJanis] +--- + +Reset reconciliation bar when switching accounts