Skip to content

Commit

Permalink
[ML] Fix blockRefresh check.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Feb 9, 2020
1 parent a7c3845 commit c8ec7a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class JobsListView extends Component {
}

componentDidUpdate(prevProps) {
if (prevProps.lastRefresh !== this.props.lastRefresh && this.props.blockRefresh === false) {
if (prevProps.lastRefresh !== this.props.lastRefresh && this.props.blockRefresh !== true) {
this.refreshJobSummaryList();
}
}
Expand Down

0 comments on commit c8ec7a5

Please sign in to comment.