mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-12-01 07:20:46 +01:00
Merge pull request #2236 from mishankov/fix/stats-30-days
Simple fix for Uptime component
This commit is contained in:
commit
9fe9e235ca
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<span :class="className" :title="24 + $t('-hour')">{{ uptime }}</span>
|
<span :class="className" :title="title">{{ uptime }}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -75,6 +75,14 @@ export default {
|
|||||||
|
|
||||||
return "";
|
return "";
|
||||||
},
|
},
|
||||||
|
|
||||||
|
title() {
|
||||||
|
if (this.type === "720") {
|
||||||
|
return `30${this.$t("-day")}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return `24${this.$t("-hour")}`;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user