Skip to content

Commit 008e7f5

Browse files
authored
Merge pull request #30 from ligoj/norman/fix-list-actions-column-layout
fix(plugin-id/ui): harmonize actions column layout across Identity ListViews
2 parents 478901c + 9cc3903 commit 008e7f5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ui/src/views/CompanyListView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const headers = computed(() => [
107107
{ title: t('group.scope'), key: 'scope', sortable: false },
108108
{ title: t('group.members'), key: 'count', sortable: false, width: '100px' },
109109
{ title: t('group.locked'), key: 'locked', sortable: false, width: '80px' },
110-
{ title: '', key: 'actions', sortable: false, width: '100px', align: 'end' },
110+
{ title: '', key: 'actions', sortable: false, width: '120px', align: 'center' },
111111
])
112112
113113
function loadData(options) {

ui/src/views/GroupListView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const headers = computed(() => [
109109
{ title: t('group.scope'), key: 'scope', sortable: false },
110110
{ title: t('group.members'), key: 'count', sortable: false, width: '100px' },
111111
{ title: t('group.locked'), key: 'locked', sortable: false, width: '80px' },
112-
{ title: '', key: 'actions', sortable: false, width: '120px', align: 'end' },
112+
{ title: '', key: 'actions', sortable: false, width: '120px', align: 'center' },
113113
])
114114
115115
function loadData(options) {

ui/src/views/UserListView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ const headers = computed(() => [
128128
{ title: t('user.email'), key: 'mails', sortable: false },
129129
{ title: t('user.groups'), key: 'groups', sortable: false },
130130
{ title: t('common.status'), key: 'locked', sortable: false, width: '80px' },
131-
{ title: '', key: 'actions', sortable: false, width: '100px', align: 'end' },
131+
{ title: '', key: 'actions', sortable: false, width: '120px', align: 'center' },
132132
])
133133
134134
function loadData(options) {

0 commit comments

Comments
 (0)