diff --git a/web/src/views/live/LiveDashboardView.tsx b/web/src/views/live/LiveDashboardView.tsx index 82fbfb523..800c80f17 100644 --- a/web/src/views/live/LiveDashboardView.tsx +++ b/web/src/views/live/LiveDashboardView.tsx @@ -66,7 +66,11 @@ export default function LiveDashboardView({ const eventUpdate = useFrigateReviews(); const { data: allEvents, mutate: updateEvents } = useSWR([ "review", - { limit: 10, severity: "alert" }, + { + limit: 10, + severity: "alert", + cameras: cameraGroup && cameras.filter((cam) => cam.name).join(","), + }, ]); useEffect(() => {