Remove debug logic in load_screen.js
There were some !s in there that were only for debugging
This commit is contained in:
parent
c2c45fc53e
commit
e7209aa19a
1 changed files with 2 additions and 2 deletions
|
@ -33,8 +33,8 @@ var LoadScreen = React.createClass({
|
|||
<h3>
|
||||
<BusyMessage message={this.props.message} />
|
||||
</h3>
|
||||
{!this.props.isWarning ? <Icon icon="icon-warning" /> : null} <span className={'load-screen__details ' + (!this.props.isWarning ? 'load-screen__details--warning' : '')}>{this.props.details}</span>
|
||||
{!this.props.isWarning
|
||||
{this.props.isWarning ? <Icon icon="icon-warning" /> : null} <span className={'load-screen__details ' + (this.props.isWarning ? 'load-screen__details--warning' : '')}>{this.props.details}</span>
|
||||
{this.props.isWarning
|
||||
? <div><Link label="Cancel" onClick={this.handleCancelClick} className='load-screen__cancel-link button-text' /></div>
|
||||
: null}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue