summaryrefslogtreecommitdiff
path: root/src/views/SystemDescription/Network/InventoryIPv6Settings.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/SystemDescription/Network/InventoryIPv6Settings.vue')
-rw-r--r--src/views/SystemDescription/Network/InventoryIPv6Settings.vue19
1 files changed, 5 insertions, 14 deletions
diff --git a/src/views/SystemDescription/Network/InventoryIPv6Settings.vue b/src/views/SystemDescription/Network/InventoryIPv6Settings.vue
index 3f47b1fd..a8c590b1 100644
--- a/src/views/SystemDescription/Network/InventoryIPv6Settings.vue
+++ b/src/views/SystemDescription/Network/InventoryIPv6Settings.vue
@@ -3,7 +3,7 @@
<b-table
responsive="md"
show-empty
- class="bootstrap-rounded-table"
+ no-border-collapse
:items="systems"
:fields="fields"
:empty-text="$t('global.table.emptyMessage')"
@@ -21,7 +21,7 @@
@keydown.escape="clickCancel(data)"
></b-form-input>
<b-col v-else>{{ data.value }}</b-col>
- <b-col class="system-network-table__icon-col">
+ <b-col class="table-network__icon">
<b-row v-if="systems[data.index].isEdit">
<img
src="@/assets/images/edit-ok.svg"
@@ -57,7 +57,7 @@
<span class="popup-text">Выключен</span>
</button>
</div>
- <b-col class="system-network-table__icon-col">
+ <b-col class="table-network__icon">
<img
:is="iconChevron"
class="pointer"
@@ -93,27 +93,18 @@ export default {
key: 'param',
label: 'Параметр',
formatter: this.dataFormatter,
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: `bootstrap-rounded-table__column-first___ipv-table
- bootstrap-rounded-table__column-first`,
- tdClass: 'regular-12px bootstrap-rounded-table__td',
+ thStyle: { width: '30%' },
},
{
key: 'value',
label: 'Значение',
formatter: this.dataFormatter,
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: `bootstrap-rounded-table__column-center
- bootstrap-rounded-table__ipv-table___center`,
- tdClass: 'regular-12px bootstrap-rounded-table__td',
+ thStyle: { width: '20%' },
},
{
key: 'comment',
label: 'Комментарий',
formatter: this.dataFormatter,
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-last',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
],
expandRowLabel: expandRowLabel,