From ba2e4b15dabcaa9b531a5d6f1e24d11c2e821ca8 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 31 Oct 2020 11:33:31 +0100 Subject: [PATCH] ui: improve ACL view layout Signed-off-by: Thomas Lamprecht --- www/config/ACLView.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/www/config/ACLView.js b/www/config/ACLView.js index 73edf858..2fe20524 100644 --- a/www/config/ACLView.js +++ b/www/config/ACLView.js @@ -149,31 +149,30 @@ Ext.define('PBS.config.ACLView', { columns: [ { header: gettext('Path'), - width: 200, + width: 250, sortable: true, renderer: Ext.String.htmlEncode, dataIndex: 'path', }, { header: gettext('User/Group/API Token'), - width: 100, + width: 150, sortable: true, renderer: Ext.String.htmlEncode, dataIndex: 'ugid', }, { header: gettext('Role'), - width: 80, + width: 100, sortable: true, dataIndex: 'roleid', }, { header: gettext('Propagate'), - width: 150, + flex: 1, // last element flex looks better sortable: true, renderer: Proxmox.Utils.format_boolean, dataIndex: 'propagate', }, ], - });