mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-24 21:53:40 +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: {
|
||||
activate: () => me.reload(),
|
||||
itemdblclick: () => me.run_editor(),
|
||||
},
|
||||
});
|
||||
|
||||
me.callParent();
|
||||
me.reload();
|
||||
},
|
||||
});
|
||||
|
@ -134,18 +134,30 @@ Ext.define('PVE.dc.Config', {
|
||||
itemId: 'roles',
|
||||
},
|
||||
{
|
||||
xtype: 'pveAuthView',
|
||||
title: gettext('Realms'),
|
||||
xtype: 'panel',
|
||||
layout: {
|
||||
type: 'border',
|
||||
},
|
||||
groups: ['permissions'],
|
||||
iconCls: 'fa fa-address-book-o',
|
||||
itemId: 'domains',
|
||||
},
|
||||
{
|
||||
xtype: 'pveRealmSyncJobView',
|
||||
title: gettext('Realm Sync'),
|
||||
groups: ['permissions'],
|
||||
iconCls: 'fa fa-refresh',
|
||||
itemId: 'realmsyncjobs',
|
||||
items: [
|
||||
{
|
||||
xtype: 'pveAuthView',
|
||||
region: 'center',
|
||||
border: false,
|
||||
},
|
||||
{
|
||||
xtype: 'pveRealmSyncJobView',
|
||||
title: gettext('Sync Jobs'),
|
||||
region: 'south',
|
||||
collapsible: true,
|
||||
animCollapse: false,
|
||||
border: false,
|
||||
height: '50%',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
xtype: 'pveHAStatus',
|
||||
|
Loading…
Reference in New Issue
Block a user