mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-10 07:34:07 -08:00
minor fixes
This commit is contained in:
parent
1c5bce8afa
commit
d74404e106
|
@ -247,7 +247,7 @@ router.get("/api/badge/:id/:type", cache("5 minutes"), async (request, response)
|
|||
// return a "n/a" badge in grey, if monitor is not public / not available / non exsitant
|
||||
|
||||
badgeValues.message = "N/A";
|
||||
badgeValues.color = "#CCCCCC";
|
||||
badgeValues.color = "#999";
|
||||
} else {
|
||||
const uptime = await Monitor.calcUptime(
|
||||
requestedType,
|
||||
|
|
|
@ -387,6 +387,6 @@ exports.percentageToColor = (percentage, maxHue = 90, minHue = 10) => {
|
|||
try {
|
||||
return chroma(`hsl(${hue}, 90%, 40%)`).hex();
|
||||
} catch (err) {
|
||||
return "grey";
|
||||
return "#999";
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue