fix: open disputes (#256)

This commit is contained in:
Richard Ramos 2019-05-21 15:02:01 -04:00 committed by GitHub
parent d5fe69a5f2
commit 4dafc9ebd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -70,9 +70,9 @@ class Arbitration extends Component {
};
resolveDispute = () => {
this.setState({displayDialog: false, display: false});
this.setState({displayDialog: false, displayUsers: false});
this.props.resolveDispute(this.props.escrow.escrowId, this.state.selectedUser === this.props.escrow.buyer ? ARBITRATION_SOLVED_BUYER : ARBITRATION_SOLVED_SELLER )
this.props.resolveDispute(this.props.escrow.escrowId, this.state.selectedUser === this.props.escrow.buyer ? ARBITRATION_SOLVED_BUYER : ARBITRATION_SOLVED_SELLER);
}
render() {