missing file
This commit is contained in:
parent
084da23442
commit
5096710197
2 changed files with 6 additions and 1 deletions
3
frontend/app/components/Clips/ClipsPage/index.ts
Normal file
3
frontend/app/components/Clips/ClipsPage/index.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
function Clips() {
|
||||
return null;
|
||||
}
|
||||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue