Skip to content

Commit

Permalink
Estimate count on test-history page
Browse files Browse the repository at this point in the history
  • Loading branch information
john-dupuy authored and jjaquish committed Aug 9, 2022
1 parent abd1793 commit 68411b5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/components/test-history.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ export class TestHistoryTable extends React.Component {
params['filter'] = toAPIFilter(filters);
params['pageSize'] = 1;
params['page'] = 1;
params['estimate'] = 'true';

HttpClient.get([Settings.serverUrl, 'result'], params)
.then(response => HttpClient.handleResponse(response))
Expand All @@ -235,6 +236,7 @@ export class TestHistoryTable extends React.Component {
params['filter'] = toAPIFilter(filters);
params['pageSize'] = this.state.pageSize;
params['page'] = this.state.page;
params['estimate'] = 'true';

this.setState({rows: [['Loading...', '', '', '', '']]});
HttpClient.get([Settings.serverUrl, 'result'], params)
Expand Down

0 comments on commit 68411b5

Please sign in to comment.