mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-29 01:42:34 +02:00
fix linting.
This commit is contained in:
parent
4b2978dfb0
commit
326a996a48
1 changed files with 2 additions and 2 deletions
|
@ -1287,9 +1287,9 @@ class Monitor extends BeanModel {
|
|||
let text;
|
||||
if (bean.status === UP) {
|
||||
text = "✅ Up";
|
||||
} else if(bean.status === DOWN) {
|
||||
} else if (bean.status === DOWN) {
|
||||
text = "🔴 Down";
|
||||
} else if(bean.status === MAINTENANCE) {
|
||||
} else if (bean.status === MAINTENANCE) {
|
||||
text = "🟦 Maintenance";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue