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:
@@ -369,7 +369,7 @@ function renderServices(filtered) {
|
|||||||
|
|
||||||
function renderServiceCard(s) {
|
function renderServiceCard(s) {
|
||||||
const isRunning = s.status === "running";
|
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 statusClass = "status-" + (s.status || "unknown");
|
||||||
|
|
||||||
const statusLabel = (s.status || "unknown").toUpperCase();
|
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: "Prometheus", url: "http://192.168.86.192:9095", icon: "\uD83D\uDD25" },
|
||||||
{ name: "Alertmanager", url: "http://192.168.86.192:9093", icon: "\uD83D\uDEA8" },
|
{ 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: "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: "Traefik Dashboard", url: "http://192.168.86.192:8090", icon: "\uD83D\uDEA6" },
|
||||||
{ name: "Portainer", url: "http://192.168.86.192:9000", icon: "\uD83D\uDC33" },
|
{ name: "Portainer", url: "http://192.168.86.192:9000", icon: "\uD83D\uDC33" },
|
||||||
]},
|
]},
|
||||||
|
|||||||
Reference in New Issue
Block a user