summaryrefslogtreecommitdiff
path: root/src/views/Settings/Network/TableIpv4.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Settings/Network/TableIpv4.vue')
-rw-r--r--src/views/Settings/Network/TableIpv4.vue23
1 files changed, 5 insertions, 18 deletions
diff --git a/src/views/Settings/Network/TableIpv4.vue b/src/views/Settings/Network/TableIpv4.vue
index 7481dc7b..6514a59c 100644
--- a/src/views/Settings/Network/TableIpv4.vue
+++ b/src/views/Settings/Network/TableIpv4.vue
@@ -16,11 +16,12 @@
<b-table
responsive="md"
hover
+ class="mb-0"
+ show-empty
+ no-border-collapse
:fields="ipv4TableFields"
:items="form.ipv4TableItems"
:empty-text="$t('global.table.emptyMessage')"
- class="bootstrap-rounded-table mb-0"
- show-empty
>
<template #cell(actions)="{ item, index }">
<table-row-action
@@ -87,41 +88,27 @@ export default {
key: 'Address',
label: this.$t('pageNetwork.table.ipAddress'),
thStyle: { width: '20%' },
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-first',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
key: 'Gateway',
label: this.$t('pageNetwork.table.gateway'),
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: 'SubnetMask',
label: this.$t('pageNetwork.table.subnet'),
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-center',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
key: 'AddressOrigin',
label: this.$t('pageNetwork.table.addressOrigin'),
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: 'actions',
label: this.$t('pageNetwork.table.actions'),
thStyle: { width: '10%' },
- thClass:
- 'text-right semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-last',
- tdClass: 'text-right bootstrap-rounded-table__td',
+ thClass: 'text-right',
+ tdClass: 'text-right',
},
],
};