Merge pull request #3093 from matrix-org/jryans/is-down-blocks-reg

Allow registration to submit for non-fatal errors
This commit is contained in:
J. Ryan Stinnett 2019-06-12 10:11:16 +01:00 committed by GitHub
commit 3dee682048
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}
/>;
}
},