fix #5379: panel: AuthView: add column displaying whether the realm is default

Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
This commit is contained in:
Christoph Heiss 2024-08-23 13:07:26 +02:00 committed by Thomas Lamprecht
parent 4b3850bf45
commit 6fe81f0cef

View File

@ -25,6 +25,14 @@ Ext.define('Proxmox.panel.AuthView', {
sortable: true,
dataIndex: 'type',
},
{
header: gettext('Default'),
width: 80,
sortable: true,
dataIndex: 'default',
renderer: isDefault => isDefault ? Proxmox.Utils.renderEnabledIcon(true) : '',
align: 'center',
},
{
header: gettext('Comment'),
sortable: false,