summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/IprangeModule.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/IprangeModule.vue')
-rw-r--r--webapp/src/components/IprangeModule.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/src/components/IprangeModule.vue b/webapp/src/components/IprangeModule.vue
index bc137e7..d782707 100644
--- a/webapp/src/components/IprangeModule.vue
+++ b/webapp/src/components/IprangeModule.vue
@@ -144,9 +144,9 @@ export default {
...mapState('groups', ['groupList']),
headers () {
return [
- { key: 'id', text: this.$t('id'), width: '50px' },
- { key: 'startIp', text: this.$t('startIp'), width: '120px' },
- { key: 'endIp', text: this.$t('endIp'), width: '140px' },
+ { key: 'id', text: this.$t('id'), width: '50px', sortType: 'number' },
+ { key: 'startIp', text: this.$t('startIp'), width: '120px', sortType: 'ipv4' },
+ { key: 'endIp', text: this.$t('endIp'), width: '140px', sortType: 'ipv4' },
{ key: 'group', text: this.$t('group'), copyKey: 'groupName', sortKey: 'groupName' },
{ key: 'actions', width: '60px' }
]