missing file

This commit is contained in:
nick-delirium 2025-06-05 09:44:15 +02:00
parent 084da23442
commit 5096710197
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,3 @@
function Clips() {
return null;
}

View file

@ -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) {