Reset to voting screen when done

This commit is contained in:
Fred Carlsen
2019-02-13 20:34:49 +01:00
committed by Jacob Evans
parent 155b5dd42f
commit 7f616356d2

View File

@@ -188,7 +188,7 @@ export class ModalVote extends React.Component<Props> {
<Paragraph isMuted={true} color={colors.textDarkPrimary}>
You voted from {selectedAddress} with {formattedBalance} ZRX
</Paragraph>
<Button type="button" onClick={this.props.onDismiss}>
<Button type="button" onClick={this._onDone.bind(this)}>
Done
</Button>
</Confirmation>
@@ -286,6 +286,13 @@ export class ModalVote extends React.Component<Props> {
this.props.onVoted();
}
}
private _onDone(): void {
this.setState({
isSuccessful: false,
});
this.props.onDismiss();
}
}
// Handle errors: {"errors":[{"location":"body","param":"name","msg":"Invalid value"},{"location":"body","param":"email","msg":"Invalid value"}]}