[JENKINS-35828] de-lint

This commit is contained in:
Cliff Meyers 2016-06-30 16:23:59 -04:00
parent 97c3cb7508
commit 13f6bc1c30
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ export class PipelineCard extends Component {
}
_onFavoriteToggle() {
var value = !this.state.favorite;
const value = !this.state.favorite;
this.setState({
favorite: value,
});
@ -96,7 +96,7 @@ export class PipelineCard extends Component {
<span className="actions">
{ showRun &&
<a className="run" title="Run Again" onClick={() => this._onRunClick()}>
<Icon size={24} icon="replay"/>
<Icon size={24} icon="replay" />
</a>
}