Skip to content

Commit

Permalink
chore(session): change session dashboard export report timeframe to c…
Browse files Browse the repository at this point in the history
…urrent time AN-23368 (#546)

* fix(session): change session dashboard export report timeframe to current time AN-23368

* chore: revert index.html
  • Loading branch information
amirch1 authored Sep 3, 2024
1 parent 20bdbfe commit b1143d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/modules/entry-ep/entry-ep-view.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b1143d5

Please sign in to comment.