diff --git a/web/src/views/live/LiveDashboardView.tsx b/web/src/views/live/LiveDashboardView.tsx index dd8bb83f5..a25741f63 100644 --- a/web/src/views/live/LiveDashboardView.tsx +++ b/web/src/views/live/LiveDashboardView.tsx @@ -92,10 +92,17 @@ export default function LiveDashboardView({ const eventUpdate = useFrigateReviews(); const alertCameras = useMemo(() => { - if (!config || cameraGroup == "default") { + if (!config) { return null; } + if (cameraGroup == "default") { + return Object.values(config.cameras) + .filter((cam) => cam.ui.dashboard) + .map((cam) => cam.name) + .join(","); + } + if (includeBirdseye && cameras.length == 0) { return Object.values(config.cameras) .filter((cam) => cam.birdseye.enabled)