diff --git a/app/src/modules/settings/routes/roles/collection.vue b/app/src/modules/settings/routes/roles/collection.vue index 05c6d5d19a..f80774cfbf 100644 --- a/app/src/modules/settings/routes/roles/collection.vue +++ b/app/src/modules/settings/routes/roles/collection.vue @@ -26,8 +26,9 @@
@@ -90,20 +89,22 @@ export default defineComponent({ return adminRoles.length === 1 ? adminRoles[0].id : null; }); - const tableHeaders: TableHeader[] = [ + const tableHeaders = ref([ { text: '', value: 'icon', sortable: false, width: 42, align: 'left', + description: null, }, { text: t('name'), value: 'name', sortable: false, - width: 140, + width: 200, align: 'left', + description: null, }, { text: t('users'), @@ -111,6 +112,7 @@ export default defineComponent({ sortable: false, width: 140, align: 'left', + description: null, }, { text: t('description'), @@ -118,8 +120,9 @@ export default defineComponent({ sortable: false, width: 470, align: 'left', + description: null, }, - ]; + ]); fetchRoles();