forked from Github/frigate
Redesign Recordings View (#10690)
* Use full width top bar * Make each item in review filter group optional * Remove export creation from export page * Consolidate packages and fix opening recording from event * Use common type for time range * Move timeline to separate component * Add events list view to recordings view * Fix loading of images * Fix incorrect labels * use overlay state for selected timeline type * Fix up for mobile view for now * replace overlay state * fix comparison * remove unused
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { Preview } from "./preview";
|
||||
import { Recording } from "./record";
|
||||
import { TimeRange } from "./timeline";
|
||||
|
||||
export type DynamicPlayback = {
|
||||
recordings: Recording[];
|
||||
@@ -7,5 +8,5 @@ export type DynamicPlayback = {
|
||||
|
||||
export type PreviewPlayback = {
|
||||
preview: Preview | undefined;
|
||||
timeRange: { end: number; start: number };
|
||||
timeRange: TimeRange;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user