* Set max width on the problems area in status bar and use unique keys so they do not duplicate

* Fix possibly missing media info

* Show full row of items on tablet

* remove debugging logic
This commit is contained in:
Nicolas Mowen
2024-05-18 10:54:46 -06:00
committed by GitHub
parent 1133202cbd
commit 8cddfc27fb
4 changed files with 14 additions and 13 deletions

View File

@@ -51,7 +51,7 @@ export default function useStats(stats: FrigateStats | undefined) {
return;
}
if (config.cameras[name].enabled && cam["camera_fps"] == 0) {
if (config.cameras[name].enabled && (cam["camera_fps"] == 0)) {
problems.push({
text: `${capitalizeFirstLetter(name.replaceAll("_", " "))} is offline`,
color: "text-danger",