Merge pull request #2236 from mishankov/fix/stats-30-days

Simple fix for Uptime component
pull/2490/head
Louis Lam 1 year ago committed by GitHub
commit 9fe9e235ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
<template>
<span :class="className" :title="24 + $t('-hour')">{{ uptime }}</span>
<span :class="className" :title="title">{{ uptime }}</span>
</template>
<script>
@ -75,6 +75,14 @@ export default {
return "";
},
title() {
if (this.type === "720") {
return `30${this.$t("-day")}`;
}
return `24${this.$t("-hour")}`;
}
},
};
</script>

Loading…
Cancel
Save