Merge pull request #151 from lbryio/fix-watch-screen-debug

Remove debug logic in load_screen.js
This commit is contained in:
alexliebowitz 2017-01-31 13:46:24 -05:00 committed by GitHub
commit fe5193ad84

View file

@ -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>