diff --git a/frontend/app/components/Clips/ClipsPage/index.ts b/frontend/app/components/Clips/ClipsPage/index.ts new file mode 100644 index 000000000..61790bafa --- /dev/null +++ b/frontend/app/components/Clips/ClipsPage/index.ts @@ -0,0 +1,3 @@ +function Clips() { + return null; +} diff --git a/frontend/app/mstore/sessionStore.ts b/frontend/app/mstore/sessionStore.ts index 42b4161ce..15fd381a9 100644 --- a/frontend/app/mstore/sessionStore.ts +++ b/frontend/app/mstore/sessionStore.ts @@ -66,6 +66,8 @@ class UserFilter { return { endDate: this.period.end, startDate: this.period.start, + startTimestamp: this.startDate, + endTimestamp: this.endDate, filters: this.filters.map(filterMap), page: this.page, limit: this.limit, @@ -343,7 +345,7 @@ export default class SessionStore { ...evData, events: evData.events.map((e) => ({ ...e, - isHighlighted: checkEventWithFilters(e, searchStore.instance.filters) + isHighlighted: checkEventWithFilters(e, searchStore.instance.filters) })), }); } catch (e) {