summaryrefslogtreecommitdiff
path: root/src/views/Health
diff options
context:
space:
mode:
authorDixsie Wolmers <dixsie@ibm.com>2020-08-25 05:36:37 +0300
committerGunnar Mills <gmills@us.ibm.com>2020-08-26 23:19:29 +0300
commit949cdd51631b79de34cdbbb2a988ed1e9b610798 (patch)
treeaf68760ecbcfa055c7131d600c3292099a842f23 /src/views/Health
parent87cc56186546c3d805e05d7fae23bee3612fc552 (diff)
downloadwebui-vue-949cdd51631b79de34cdbbb2a988ed1e9b610798.tar.xz
Format date and time in event log tables
- Adds line break to format date and time in Event Logs and Overview event log table Signed-off-by: Dixsie Wolmers <dixsie@ibm.com> Change-Id: Ib277a88b80115753bc74dc6dd21bf6a49eef101f
Diffstat (limited to 'src/views/Health')
-rw-r--r--src/views/Health/EventLogs/EventLogs.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/views/Health/EventLogs/EventLogs.vue b/src/views/Health/EventLogs/EventLogs.vue
index 810edddc..256a2380 100644
--- a/src/views/Health/EventLogs/EventLogs.vue
+++ b/src/views/Health/EventLogs/EventLogs.vue
@@ -83,7 +83,8 @@
<!-- Date column -->
<template v-slot:cell(date)="{ value }">
- {{ value | formatDate }} {{ value | formatTime }}
+ <p class="mb-0">{{ value | formatDate }}</p>
+ <p class="mb-0">{{ value | formatTime }}</p>
</template>
<!-- Actions column -->