Resolve lint errors

This commit is contained in:
Karel Krýda 2022-04-30 14:57:08 +02:00
parent 7532acc95d
commit f78d01d770
11 changed files with 105 additions and 80 deletions

View file

@ -15,7 +15,7 @@ export default {
computed: {
uptime() {
if (this.type === "maintenance") {
return this.$t("Maintenance");
}
@ -31,9 +31,9 @@ export default {
color() {
if (this.type === "maintenance" || this.monitor.maintenance) {
return "maintenance"
return "maintenance";
}
if (this.lastHeartBeat.status === 0) {
return "danger";
}