From 509671019763cf5069d7df133a0f64c6c6275a22 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Thu, 5 Jun 2025 09:44:15 +0200 Subject: [PATCH] missing file --- frontend/app/components/Clips/ClipsPage/index.ts | 3 +++ frontend/app/mstore/sessionStore.ts | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 frontend/app/components/Clips/ClipsPage/index.ts 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) {