From b1143d5bd82fb941fc17e085353829106c8bac87 Mon Sep 17 00:00:00 2001 From: Amir Chervinsky Date: Tue, 3 Sep 2024 16:01:06 +0300 Subject: [PATCH] chore(session): change session dashboard export report timeframe to current time AN-23368 (#546) * fix(session): change session dashboard export report timeframe to current time AN-23368 * chore: revert index.html --- src/app/modules/entry-ep/entry-ep-view.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/modules/entry-ep/entry-ep-view.component.ts b/src/app/modules/entry-ep/entry-ep-view.component.ts index 30437dbfa..e9cb953fa 100644 --- a/src/app/modules/entry-ep/entry-ep-view.component.ts +++ b/src/app/modules/entry-ep/entry-ep-view.component.ts @@ -221,7 +221,7 @@ export class EntryEpViewComponent implements OnInit, OnDestroy { this._recordingEntryId = this._vodEntryIds.split(analyticsConfig.valueSeparator)[0]; this._exportDateFilter = { startDate: Math.floor(this._eventStartDate.getTime() / 1000), - endDate: Math.floor(this._eventEndDate.getTime() / 1000), + endDate: Math.floor((new Date()).getTime() / 1000), timeZoneOffset: DateFilterUtils.getTimeZoneOffset(), timeUnits: KalturaReportInterval.days, endDay: null,