From dd47b6c6ada6f18c4a17d8922fad87803f18fce5 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 7bc4852e0e..796b97f158 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 0000000000..c2d1c9f966 --- /dev/null +++ b/upcoming-release-notes/1547.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [MatissJanis] +--- + +Reset reconciliation bar when switching accounts