diff --git a/apps/client/src/widgets/type_widgets/file/Video.tsx b/apps/client/src/widgets/type_widgets/file/Video.tsx index 1bd43a9784..180b8ce4db 100644 --- a/apps/client/src/widgets/type_widgets/file/Video.tsx +++ b/apps/client/src/widgets/type_widgets/file/Video.tsx @@ -40,6 +40,7 @@ export function VideoPreviewContent({ url, mime }: { url: string, mime: string } }, []); const onVideoClick = useCallback((e: MouseEvent) => { + e.stopPropagation(); if ((e.target as HTMLElement).closest(".media-preview-controls")) return; togglePlayback(); }, [togglePlayback]);