Timeline handlebar changes (#10170)

* auto scrolling handlebar with preview time

* tablets can show 2 columns on the event view grid

* font sizes

* hide minimap when previewing
This commit is contained in:
Josh Hawkins
2024-03-01 09:36:13 -06:00
committed by GitHub
parent 49530dc2e4
commit a49e1bbc64
4 changed files with 86 additions and 113 deletions

View File

@@ -33,7 +33,7 @@ import { useSwipeable } from "react-swipeable";
type PreviewPlayerProps = {
review: ReviewSegment;
allPreviews?: Preview[];
onTimeUpdate?: (time: number | undefined) => void;
onTimeUpdate?: React.Dispatch<React.SetStateAction<number | undefined>>;
setReviewed: (reviewId: string) => void;
markAboveReviewed: () => void;
onClick: (reviewId: string, ctrl: boolean) => void;