Skip to content

Commit

Permalink
new client lib + updated parameters for export CSV
Browse files Browse the repository at this point in the history
  • Loading branch information
amirch1 committed Sep 7, 2020
1 parent 9e4d36e commit c330b9d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"echarts": "^4.2.1",
"jquery": "^3.5.1",
"jsnlog": "^2.29.0",
"kaltura-ngx-client": "file:libs/kaltura-ngx-client-12.0.0-v20200811-102735.tgz",
"kaltura-ngx-client": "file:libs/kaltura-ngx-client-12.0.0-v20200907-121251.tgz",
"moment": "^2.24.0",
"ng-carousel-iuno": "^0.3.0",
"ngx-echarts": "^4.2.1",
Expand Down
3 changes: 2 additions & 1 deletion src/app/shared/components/export-csv/export-csv.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export class ExportCsvComponent implements OnDestroy {
}

const timeZoneOffset = DateFilterUtils.getTimeZoneOffset();
const reportsItemsGroup = this.name;
const reportItems = [];
let filter = this._getFilter();
if (additionalFilters) {
Expand Down Expand Up @@ -204,7 +205,7 @@ export class ExportCsvComponent implements OnDestroy {
}
});

const exportAction = new ReportExportToCsvAction({ params: new KalturaReportExportParams({ timeZoneOffset, reportItems }) });
const exportAction = new ReportExportToCsvAction({ params: new KalturaReportExportParams({ timeZoneOffset, reportsItemsGroup, reportItems }) });

this._exportingCsv = true;

Expand Down

0 comments on commit c330b9d

Please sign in to comment.