fix linting.

This commit is contained in:
Riccardo Crippa 2025-04-29 15:55:02 +02:00
parent 4b2978dfb0
commit 326a996a48

View file

@ -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";
}