ui: MainView: do not use unnecessary panels
using container here is fine, we do not need panel behaviour which is more bloated. Removes two ARIA warnings. Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
51aee8cac8
commit
ecf5f468c3
|
@ -261,7 +261,7 @@ Ext.define('PBS.MainView', {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'panel',
|
xtype: 'container',
|
||||||
scrollable: 'y',
|
scrollable: 'y',
|
||||||
border: false,
|
border: false,
|
||||||
region: 'west',
|
region: 'west',
|
||||||
|
@ -286,7 +286,7 @@ Ext.define('PBS.MainView', {
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'panel',
|
xtype: 'container',
|
||||||
layout: { type: 'card' },
|
layout: { type: 'card' },
|
||||||
region: 'center',
|
region: 'center',
|
||||||
border: false,
|
border: false,
|
||||||
|
|
Loading…
Reference in New Issue