summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Montague <derick.montague@ibm.com>2020-09-04 00:26:33 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-09-09 19:22:17 +0300
commit6b140bacde6213f6f6b89e0f1480948b39436fb0 (patch)
tree596d6ac8d2b337f15e81cb6db9c761fcc20ecb19
parentd2ac76d7922fff243174ee50ab05020a5064aa6e (diff)
downloadwebui-vue-6b140bacde6213f6f6b89e0f1480948b39436fb0.tar.xz
Update event log default sort order
- Set the default sort order to id descending to handle an edge case created by two logs with the same time stamp and the GUI limitation of sorting by one column only. Signed-off-by: Derick Montague <derick.montague@ibm.com> Change-Id: Ib07c9b849e043c401e91db720df92feb850e15dd
-rw-r--r--src/views/Health/EventLogs/EventLogs.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/Health/EventLogs/EventLogs.vue b/src/views/Health/EventLogs/EventLogs.vue
index ef14777e..0e8a5448 100644
--- a/src/views/Health/EventLogs/EventLogs.vue
+++ b/src/views/Health/EventLogs/EventLogs.vue
@@ -48,7 +48,7 @@
no-sort-reset
sort-desc
show-empty
- sort-by="date"
+ sort-by="id"
:fields="fields"
:items="filteredLogs"
:sort-compare="onSortCompare"