[ML] Fix jobs list loading when auto refresh is off (#42076)

This commit is contained in:
James Gowdy 2019-07-29 08:46:24 +01:00 committed by GitHub
parent 1911b20cbe
commit 9a2ce24918
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,7 +127,8 @@ export class JobsListView extends Component {
} else {
this.setRefreshInterval(value);
}
this.refreshJobSummaryList();
// force load the jobs list when the refresh interval changes
this.refreshJobSummaryList(true);
}
setRefreshInterval(interval) {