summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/HardwareStatus/Inventory/InventoryTableSystem.vue')
-rw-r--r--src/views/HardwareStatus/Inventory/InventoryTableSystem.vue24
1 files changed, 20 insertions, 4 deletions
diff --git a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
index 1576c8d8..9ddcaa69 100644
--- a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
@@ -29,7 +29,7 @@
<!-- Health -->
<template #cell(health)="{ value }">
<status-icon :status="statusIcon(value)" />
- {{ value }}
+ {{ statusIcon(value) }}
</template>
<template #cell(locationIndicatorActive)="{ item }">
@@ -171,34 +171,50 @@ export default {
{
key: 'expandRow',
label: '',
- tdClass: 'table-row-expand',
+ thStyle: { minWidth: '29px' },
+ thClass: 'bootstrap-rounded-table__head_bg',
+ class: 'bootstrap-rounded-table__column-first',
+ tdClass: 'table-row-expand bootstrap-rounded-table__td',
},
{
key: 'id',
label: this.$t('pageInventory.table.id'),
formatter: this.dataFormatter,
+ thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
+ class: 'bootstrap-rounded-table__column-center',
+ tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
key: 'hardwareType',
label: this.$t('pageInventory.table.hardwareType'),
formatter: this.dataFormatter,
- tdClass: 'text-nowrap',
+ thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
+ class: 'bootstrap-rounded-table__column-center',
+ tdClass: 'text-nowrap regular-12px bootstrap-rounded-table__td',
},
{
key: 'health',
label: this.$t('pageInventory.table.health'),
formatter: this.dataFormatter,
- tdClass: 'text-nowrap',
+ thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
+ class: 'bootstrap-rounded-table__column-center',
+ tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
key: 'locationNumber',
label: this.$t('pageInventory.table.locationNumber'),
formatter: this.dataFormatter,
+ thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
+ class: 'bootstrap-rounded-table__column-center',
+ tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
key: 'locationIndicatorActive',
label: this.$t('pageInventory.table.identifyLed'),
formatter: this.dataFormatter,
+ thClass: ' semi-bold-12px__caps bootstrap-rounded-table__head_bg',
+ class: 'bootstrap-rounded-table__column-last',
+ tdClass: ' bootstrap-rounded-table__td',
},
],
expandRowLabel: expandRowLabel,