From 78581229f5d15c8fade6a1dd0b36ebddc6d8fdf4 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:01:05 -0600 Subject: [PATCH] fix props --- web/src/views/live/DraggableGridLayout.tsx | 1 + web/src/views/live/LiveDashboardView.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/web/src/views/live/DraggableGridLayout.tsx b/web/src/views/live/DraggableGridLayout.tsx index d8a1ee144..a20c598ea 100644 --- a/web/src/views/live/DraggableGridLayout.tsx +++ b/web/src/views/live/DraggableGridLayout.tsx @@ -698,6 +698,7 @@ const LivePlayerGridItem = React.forwardRef< onResetLiveMode={onResetLiveMode} containerRef={ref as React.RefObject} autoLive={autoLive} + playInBackground={false} showStillWithoutActivity={showStillWithoutActivity} useWebGL={useWebGL} /> diff --git a/web/src/views/live/LiveDashboardView.tsx b/web/src/views/live/LiveDashboardView.tsx index 9d3335ac4..5f27f1f67 100644 --- a/web/src/views/live/LiveDashboardView.tsx +++ b/web/src/views/live/LiveDashboardView.tsx @@ -375,6 +375,7 @@ export default function LiveDashboardView({ preferredLiveMode={preferredLiveModes[camera.name] ?? "mse"} autoLive={autoLiveView} useWebGL={false} + playInBackground={false} streamName={Object.values(camera.live.streams)[0]} onClick={() => onSelectCamera(camera.name)} onError={(e) => handleError(camera.name, e)}