From bd3237500f111bd533676d89c7ad03c190a810a8 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 10 Jun 2019 20:24:06 -0600 Subject: [PATCH] Fix submit disabled condition --- src/components/structures/auth/Registration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/structures/auth/Registration.js b/src/components/structures/auth/Registration.js index de042550d0..7dd24b550b 100644 --- a/src/components/structures/auth/Registration.js +++ b/src/components/structures/auth/Registration.js @@ -471,7 +471,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.serverIsAlive && !this.state.serverErrorIsFatal} />; } },