summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModuleClientList.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/GroupModuleClientList.vue')
-rw-r--r--webapp/src/components/GroupModuleClientList.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/src/components/GroupModuleClientList.vue b/webapp/src/components/GroupModuleClientList.vue
index 88d1332..557d664 100644
--- a/webapp/src/components/GroupModuleClientList.vue
+++ b/webapp/src/components/GroupModuleClientList.vue
@@ -28,7 +28,7 @@
<template>
<div>
<v-card>
- <data-table v-model="selected" :headers="headers" :items="clients" :loading="loading" @dblclick="loadClient($event)" min-width="1000px">
+ <data-table v-model="selected" :headers="headers" :items="clients" :loading="loading" @dblclick="loadClient($event)" min-width="1300px">
<div slot="actions" slot-scope="row" style="text-align: right">
<v-btn icon @click.stop @mousedown="loadClient(row.item)" style="margin: 0"><v-icon>keyboard_arrow_right</v-icon></v-btn>
</div>
@@ -69,9 +69,9 @@ export default {
return [
{ key: 'id', text: this.$t('id'), width: '50px' },
{ key: 'name', text: this.$t('name') },
- { key: 'ip', text: this.$t('ip'), width: '100px' },
+ { key: 'ip', text: this.$t('ip'), width: '120px' },
{ key: 'mac', text: this.$t('mac'), width: '160px' },
- { key: 'uuid', text: this.$t('uuid'), width: '180px' },
+ { key: 'uuid', text: this.$t('uuid'), width: '300px' },
{ key: 'actions', width: '60px' }
]
},