mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-11-06 23:46:13 +08:00
Added label to status badge
This commit is contained in:
@@ -136,6 +136,7 @@ router.get("/api/badge/:id/status", cache("5 minutes"), async (request, response
|
|||||||
const heartbeat = await Monitor.getPreviousHeartbeat(requestedMonitorId);
|
const heartbeat = await Monitor.getPreviousHeartbeat(requestedMonitorId);
|
||||||
const state = overrideValue !== undefined ? overrideValue : heartbeat.status === 1;
|
const state = overrideValue !== undefined ? overrideValue : heartbeat.status === 1;
|
||||||
|
|
||||||
|
badgeValues.label = label ? label : "";
|
||||||
badgeValues.color = state ? upColor : downColor;
|
badgeValues.color = state ? upColor : downColor;
|
||||||
badgeValues.message = label ?? state ? upLabel : downLabel;
|
badgeValues.message = label ?? state ? upLabel : downLabel;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user