From ecf5f468c3b64401c89b782a93baade3f81dbb0a Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 26 May 2021 11:11:58 +0200 Subject: [PATCH] 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 --- www/MainView.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/MainView.js b/www/MainView.js index e6257f358..54fec62e9 100644 --- a/www/MainView.js +++ b/www/MainView.js @@ -261,7 +261,7 @@ Ext.define('PBS.MainView', { ], }, { - xtype: 'panel', + xtype: 'container', scrollable: 'y', border: false, region: 'west', @@ -286,7 +286,7 @@ Ext.define('PBS.MainView', { }], }, { - xtype: 'panel', + xtype: 'container', layout: { type: 'card' }, region: 'center', border: false,