Allow registration to submit for non-fatal errors
This allows you to proceed with registration even if the IS is down, for example. Fixes https://github.com/vector-im/riot-web/issues/10018pull/21833/head
parent
3836a3e2e2
commit
b8ed731c89
|
@ -486,7 +486,7 @@ module.exports = React.createClass({
|
|||
onEditServerDetailsClick={onEditServerDetailsClick}
|
||||
flows={this.state.flows}
|
||||
serverConfig={this.props.serverConfig}
|
||||
canSubmit={this.state.serverIsAlive && !this.state.serverErrorIsFatal}
|
||||
canSubmit={!this.state.serverErrorIsFatal}
|
||||
/>;
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue