Skip to content
Snippets Groups Projects
Unverified Commit e88ea698 authored by Matt Fiddaman's avatar Matt Fiddaman Committed by GitHub
Browse files

Force transaction cleared checkboxes to show on reconcile view (#2589)

* Force transaction cleared checkboxes on reconcile view

* Add release notes
parent 9aeab0ff
No related branches found
No related tags found
No related merge requests found
......@@ -754,7 +754,11 @@ class AccountInternal extends PureComponent {
};
onReconcile = async balance => {
this.setState({ reconcileAmount: balance });
this.setState(({ showCleared }) => ({
reconcileAmount: balance,
showCleared: true,
prevShowCleared: showCleared,
}));
};
onDoneReconciling = async () => {
......@@ -783,7 +787,10 @@ class AccountInternal extends PureComponent {
await this.lockTransactions();
}
this.setState({ reconcileAmount: null });
this.setState({
reconcileAmount: null,
showCleared: this.state.prevShowCleared,
});
};
onCreateReconciliationTransaction = async diff => {
......
---
category: Bugfix
authors: [matt-fidd]
---
Force transaction cleared checkboxes to show on reconcile view
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment