mirror of https://github.com/statping/statping
Round instead of floor to be more accurate to value
parent
2fe56b1e92
commit
a8fb5ce80e
|
@ -167,9 +167,9 @@ export default Vue.mixin({
|
||||||
},
|
},
|
||||||
humanTime(val) {
|
humanTime(val) {
|
||||||
if (val >= 1000) {
|
if (val >= 1000) {
|
||||||
return Math.floor(val / 1000) + " ms"
|
return Math.round(val / 1000) + " ms"
|
||||||
}
|
}
|
||||||
return Math.floor(val) + " μs"
|
return Math.round(val) + " μs"
|
||||||
},
|
},
|
||||||
firstDayOfMonth(date) {
|
firstDayOfMonth(date) {
|
||||||
return startOfMonth(date)
|
return startOfMonth(date)
|
||||||
|
|
Loading…
Reference in New Issue