From e88936bb7f347ebf1e88aed04fb620478ff13b7b Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Thu, 23 Oct 2025 22:58:09 -0500 Subject: [PATCH] allow clicking on chevron without triggering playback --- web/src/components/timeline/DetailStream.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/web/src/components/timeline/DetailStream.tsx b/web/src/components/timeline/DetailStream.tsx index 2230e5a51..bafed69aa 100644 --- a/web/src/components/timeline/DetailStream.tsx +++ b/web/src/components/timeline/DetailStream.tsx @@ -52,7 +52,6 @@ export default function DetailStream({ const [upload, setUpload] = useState(undefined); const onSeekCheckPlaying = (timestamp: number) => { - console.log("DetailStream onSeekCheckPlaying, isPlaying:", isPlaying); onSeek(timestamp, isPlaying); }; @@ -129,7 +128,6 @@ export default function DetailStream({ const isFullyInvisible = elementRect.bottom < containerRect.top || elementRect.top > containerRect.bottom; - console.log(scrollRef.current, element, isFullyInvisible); if (isFullyInvisible) { setProgrammaticScroll(); @@ -341,7 +339,8 @@ function ReviewGroup({
{ + onClick={(e) => { + e.stopPropagation(); setOpen((v) => !v); }} aria-label={open ? "Collapse" : "Expand"}