fix birdseye and empty card (#20582)

This commit is contained in:
Josh Hawkins
2025-10-20 07:03:22 -06:00
committed by GitHub
parent 4319118e94
commit 0743cb57c2
3 changed files with 9 additions and 5 deletions
+2 -1
View File
@@ -354,7 +354,7 @@ export default function LiveDashboardView({
onSaveMuting(true);
};
if (cameras.length == 0) {
if (cameras.length == 0 && !includeBirdseye) {
return <NoCameraView />;
}
@@ -625,6 +625,7 @@ function NoCameraView() {
title={t("noCameras.title")}
description={t("noCameras.description")}
buttonText={t("noCameras.buttonText")}
link="/settings?page=cameraManagement"
/>
</div>
);