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 c8ec7a5 commit dec6509
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export class JobsListView extends Component {
};

async refreshJobSummaryList(forceRefresh = false) {
if (forceRefresh === true || this.props.blockRefresh === false) {
if (forceRefresh === true || this.props.blockRefresh !== true) {
// Set loading to true for jobs_list table for initial job loading
if (this.state.loading === null) {
this.setState({ loading: true });
Expand Down

0 comments on commit dec6509

Please sign in to comment.