mirror of https://github.com/apache/cloudstack.git
UI: Fix Usage Server stats date display (#6308)
This commit is contained in:
parent
d0f918d8e6
commit
aef4916e1c
|
|
@ -158,7 +158,7 @@ export default {
|
|||
metric.name = 'uptime in seconds'
|
||||
metric.value = map[key]
|
||||
array.push(metric)
|
||||
} else if (key === 'collectiontime' || key === 'lastheartbeat' || key === 'lastsuccesfuljob') {
|
||||
} else if (key === 'collectiontime' || key === 'lastheartbeat' || key === 'lastsuccessfuljob') {
|
||||
metric = {}
|
||||
metric.name = key
|
||||
metric.value = this.$toLocaleDate(map[key]) // needs a conversion
|
||||
|
|
|
|||
Loading…
Reference in New Issue