pull/21833/head
Bruno Windels 2019-02-01 14:35:25 +01:00
parent 8abb7ebc65
commit 2596a0ffc2
1 changed files with 3 additions and 1 deletions

View File

@ -239,7 +239,9 @@ module.exports = React.createClass({
);
}
let e2eIcon = this.props.e2eStatus ? <E2EIcon status={this.props.e2eStatus} /> : undefined;
const e2eIcon = this.props.e2eStatus ?
<E2EIcon status={this.props.e2eStatus} /> :
undefined;
if (this.props.onCancelClick) {
cancelButton = <CancelButton onClick={this.props.onCancelClick} />;