summaryrefslogtreecommitdiff
path: root/src/views/Health/Sensors/Sensors.vue
diff options
context:
space:
mode:
authorDixsie Wolmers <dixsie@ibm.com>2020-10-22 14:34:56 +0300
committerDerick Montague <derick.montague@ibm.com>2020-10-27 21:09:51 +0300
commita04d46f7cad356da22d794e994195e801f5998b7 (patch)
tree9b4547d72d584f2a3a7befd263a9342591881bea /src/views/Health/Sensors/Sensors.vue
parent736f2a4b3c5569f3e2644525845245477e7ba2ff (diff)
downloadwebui-vue-a04d46f7cad356da22d794e994195e801f5998b7.tar.xz
Fix table row alignment and table head border
- Aligns content in table rows with expand and action buttons - Adds border to table head Signed-off-by: Dixsie Wolmers <dixsie@ibm.com> Change-Id: I403575bedc78d71ad05edcae2f59f7df994d3630
Diffstat (limited to 'src/views/Health/Sensors/Sensors.vue')
-rw-r--r--src/views/Health/Sensors/Sensors.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views/Health/Sensors/Sensors.vue b/src/views/Health/Sensors/Sensors.vue
index 66bb7d50..acd2d18b 100644
--- a/src/views/Health/Sensors/Sensors.vue
+++ b/src/views/Health/Sensors/Sensors.vue
@@ -71,8 +71,7 @@
</template>
<template v-slot:cell(status)="{ value }">
- <status-icon :status="statusIcon(value)" />
- {{ value }}
+ <status-icon :status="statusIcon(value)" /> {{ value }}
</template>
<template v-slot:cell(currentValue)="data">
{{ data.value }} {{ data.item.units }}
@@ -146,7 +145,8 @@ export default {
{
key: 'status',
sortable: true,
- label: this.$t('pageSensors.table.status')
+ label: this.$t('pageSensors.table.status'),
+ tdClass: 'text-nowrap'
},
{
key: 'lowerCritical',