diff --git a/src/components/Uptime.vue b/src/components/Uptime.vue index 422ae0ffd..df9bd47ac 100644 --- a/src/components/Uptime.vue +++ b/src/components/Uptime.vue @@ -78,10 +78,10 @@ export default { title() { if (this.type === "720") { - return `30 ${this.$t("-day")}`; + return `30${this.$t("-day")}`; } - return `24 ${this.$t("-hour")}`; + return `24${this.$t("-hour")}`; } }, };