feat: add Frigate Alerts link to Server Links page

Links to frigate-notify v2 web UI at http://192.168.86.192:5199

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 17:24:19 -06:00
parent 9508b73293
commit 9a24db2e47
+2 -1
View File
@@ -369,7 +369,7 @@ function renderServices(filtered) {
function renderServiceCard(s) {
const isRunning = s.status === "running";
const isStopped = s.status === "exited" || s.status === "created" || s.status === "dead";
const isStopped = s.status === "exited" || s.status === "created" || s.status === "dead" || s.status === "stopped";
const statusClass = "status-" + (s.status || "unknown");
const statusLabel = (s.status || "unknown").toUpperCase();
@@ -748,6 +748,7 @@ const serverLinks = [
{ name: "Prometheus", url: "http://192.168.86.192:9095", icon: "\uD83D\uDD25" },
{ name: "Alertmanager", url: "http://192.168.86.192:9093", icon: "\uD83D\uDEA8" },
{ name: "AdGuard Home", url: "http://192.168.86.192:3000", icon: "\uD83D\uDEE1\uFE0F" },
{ name: "Frigate Alerts", url: "http://192.168.86.192:5199", icon: "\uD83D\uDD14" },
{ name: "Traefik Dashboard", url: "http://192.168.86.192:8090", icon: "\uD83D\uDEA6" },
{ name: "Portainer", url: "http://192.168.86.192:9000", icon: "\uD83D\uDC33" },
]},