summaryrefslogtreecommitdiff
path: root/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-06-20 14:42:25 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-06-20 17:49:26 +0300
commitbde69949362b9dfd1a24fd6fd810116fa3136b5a (patch)
treed049c6d6f07a895db02d824509604ce62dbf2f92 /src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
parent931c2cad0da1a84e3df0745b385ec06d29cc2634 (diff)
downloadwebui-vue-bde69949362b9dfd1a24fd6fd810116fa3136b5a.tar.xz
fix PageTitle, VirtualMedia
Diffstat (limited to 'src/views/HardwareStatus/Inventory/InventoryTableSystem.vue')
-rw-r--r--src/views/HardwareStatus/Inventory/InventoryTableSystem.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
index 9ddcaa69..25d5b38e 100644
--- a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
@@ -9,6 +9,7 @@
show-empty
:items="systems"
:fields="fields"
+ :fixed="true"
:empty-text="$t('global.table.emptyMessage')"
:busy="isBusy"
>
@@ -171,7 +172,7 @@ export default {
{
key: 'expandRow',
label: '',
- thStyle: { minWidth: '29px' },
+ thStyle: { width: '4%' },
thClass: 'bootstrap-rounded-table__head_bg',
class: 'bootstrap-rounded-table__column-first',
tdClass: 'table-row-expand bootstrap-rounded-table__td',
@@ -180,6 +181,7 @@ export default {
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',
@@ -204,6 +206,7 @@ export default {
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',
@@ -212,6 +215,7 @@ export default {
key: 'locationIndicatorActive',
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',