Skip to content

Commit 0e8da18

Browse files
committed
fix
1 parent 9f94d6b commit 0e8da18

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ export class RunsOverviewModel extends OverviewPageModel {
102102
};
103103

104104
this._exportModel = new DataExportModel(this._allItems$, dataExportConfiguration, () => this.loadAll());
105+
this._exportModel.bubbleTo(this);
105106
this._item$.observe(() => {
106107
this._exportModel.setDisabled(!this.hasAnyData());
107108
this._exportModel.setTotalExistingItemsCount(this._pagination.itemsCount);

test/public/runs/overview.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ module.exports = () => {
903903
it('should successfully export filtered runs', async () => {
904904
await goToPage(page, 'run-overview');
905905

906-
const targetFileName = 'runs.json';
906+
const targetFileName = 'data.json';
907907

908908
// First export
909909
await page.$eval(EXPORT_RUNS_TRIGGER_SELECTOR, (button) => button.click());

0 commit comments

Comments
 (0)