Skip to content

Commit

Permalink
Fix reset
Browse files Browse the repository at this point in the history
  • Loading branch information
martinboulais committed Dec 17, 2024
1 parent ab2db87 commit 7be0090
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/public/views/Runs/Overview/RunsOverviewModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ export class RunsOverviewModel extends OverviewPageModel {
*/
reset(fetch = true) {
super.reset();
this._filteringModel.reset();
this.resetFiltering(fetch);
}

Expand All @@ -193,6 +192,8 @@ export class RunsOverviewModel extends OverviewPageModel {
* @return {void}
*/
resetFiltering(fetch = true) {
this._filteringModel.reset();

Check warning on line 195 in lib/public/views/Runs/Overview/RunsOverviewModel.js

View check run for this annotation

Codecov / codecov/patch

lib/public/views/Runs/Overview/RunsOverviewModel.js#L195

Added line #L195 was not covered by tests

this.runFilterOperation = 'AND';
this.runFilterValues = '';
this._runDefinitionFilter = [];
Expand Down

0 comments on commit 7be0090

Please sign in to comment.