mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 12:28:50 +03:00
Fix submit disabled condition
This commit is contained in:
parent
aacb942d57
commit
bd3237500f
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||
/>;
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue