summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-07-12 09:22:20 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-07-12 09:22:20 +0300
commit3f676232af56a272148cf8cff0cbcb78a3d7eb4a (patch)
tree0fe99fce083b70990e2e7f80c1e8e4124df93843 /src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
parent1a71a3d8c56d11b912b4aa3fdcb64935ac414a34 (diff)
downloadwebui-vue-3f676232af56a272148cf8cff0cbcb78a3d7eb4a.tar.xz
fix tables global styles
Diffstat (limited to 'src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue')
-rw-r--r--src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue19
1 files changed, 3 insertions, 16 deletions
diff --git a/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue b/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
index 86701b54..fa25919f 100644
--- a/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryTableDimmSlot.vue
@@ -18,12 +18,12 @@
</b-col>
</b-row>
<b-table
- class="bootstrap-rounded-table"
sort-icon-left
no-sort-reset
sort-by="health"
responsive="md"
show-empty
+ no-border-collapse
:items="dimms"
:fields="fields"
:sort-desc="true"
@@ -192,44 +192,31 @@ export default {
key: 'expandRow',
label: '',
thStyle: { width: '4%' },
- thClass: 'bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-first',
- tdClass: 'table-row-expand bootstrap-rounded-table__td',
+ tdClass: 'table-row-expand',
},
{
key: 'id',
label: this.$t('pageInventory.table.id'),
formatter: this.dataFormatter,
thStyle: { width: '20%' },
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-center',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
key: 'health',
label: this.$t('pageInventory.table.health'),
formatter: this.dataFormatter,
- 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',
+ tdClass: 'text-nowrap ',
},
{
key: 'locationNumber',
label: this.$t('pageInventory.table.locationNumber'),
formatter: this.dataFormatter,
thStyle: { width: '20%' },
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-center',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
key: 'identifyLed',
label: this.$t('pageInventory.table.identifyLed'),
formatter: this.dataFormatter,
thStyle: { width: '20%' },
- thClass: ' semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-last',
- tdClass: ' bootstrap-rounded-table__td',
},
],
searchFilter: searchFilter,