diff --git a/src/components/Status.vue b/src/components/Status.vue index a8f2ea596..ff430558e 100644 --- a/src/components/Status.vue +++ b/src/components/Status.vue @@ -12,9 +12,13 @@ export default { color() { if (this.status === 0) { return "danger" - } if (this.status === 1) { + } + + if (this.status === 1) { return "primary" - } if (this.status === 2) { + } + + if (this.status === 2) { return "warning" } @@ -24,9 +28,13 @@ export default { text() { if (this.status === 0) { return "Down" - } if (this.status === 1) { + } + + if (this.status === 1) { return "Up" - } if (this.status === 2) { + } + + if (this.status === 2) { return "Pending" } diff --git a/src/components/Uptime.vue b/src/components/Uptime.vue index 411ff95d5..393496238 100644 --- a/src/components/Uptime.vue +++ b/src/components/Uptime.vue @@ -28,9 +28,13 @@ export default { color() { if (this.lastHeartBeat.status === 0) { return "danger" - } if (this.lastHeartBeat.status === 1) { + } + + if (this.lastHeartBeat.status === 1) { return "primary" - } if (this.lastHeartBeat.status === 2) { + } + + if (this.lastHeartBeat.status === 2) { return "warning" }