mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-26 01:29:23 +00:00
ui: realm: move sync job panel into realm panel
and make it collapsible, so that users can hide it if they're not interested in it Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
059abb7a30
commit
4c8fcdd7af
@ -130,11 +130,11 @@ Ext.define('PVE.dc.AuthView', {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
listeners: {
|
listeners: {
|
||||||
activate: () => me.reload(),
|
|
||||||
itemdblclick: () => me.run_editor(),
|
itemdblclick: () => me.run_editor(),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
me.callParent();
|
me.callParent();
|
||||||
|
me.reload();
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -134,18 +134,30 @@ Ext.define('PVE.dc.Config', {
|
|||||||
itemId: 'roles',
|
itemId: 'roles',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'pveAuthView',
|
|
||||||
title: gettext('Realms'),
|
title: gettext('Realms'),
|
||||||
|
xtype: 'panel',
|
||||||
|
layout: {
|
||||||
|
type: 'border',
|
||||||
|
},
|
||||||
groups: ['permissions'],
|
groups: ['permissions'],
|
||||||
iconCls: 'fa fa-address-book-o',
|
iconCls: 'fa fa-address-book-o',
|
||||||
itemId: 'domains',
|
itemId: 'domains',
|
||||||
},
|
items: [
|
||||||
{
|
{
|
||||||
xtype: 'pveRealmSyncJobView',
|
xtype: 'pveAuthView',
|
||||||
title: gettext('Realm Sync'),
|
region: 'center',
|
||||||
groups: ['permissions'],
|
border: false,
|
||||||
iconCls: 'fa fa-refresh',
|
},
|
||||||
itemId: 'realmsyncjobs',
|
{
|
||||||
|
xtype: 'pveRealmSyncJobView',
|
||||||
|
title: gettext('Sync Jobs'),
|
||||||
|
region: 'south',
|
||||||
|
collapsible: true,
|
||||||
|
animCollapse: false,
|
||||||
|
border: false,
|
||||||
|
height: '50%',
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'pveHAStatus',
|
xtype: 'pveHAStatus',
|
||||||
|
Loading…
Reference in New Issue
Block a user