ui: improve running task overlay

by setting a maxHeight+scrollable
(i used 500px to be still visible on our 'min screen size' 1280x720)

and by disabling emptyText deferral, which now shows the text instantly

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2020-09-30 10:45:07 +02:00 committed by Dietmar Maurer
parent df4827f2c0
commit 486ed27299

View File

@ -8,6 +8,13 @@ Ext.define('PBS.RunningTasks', {
hideHeaders: true,
rowLines: false,
scrollable: true,
maxHeight: 500,
viewConfig: {
deferEmptyText: false,
},
controller: {
xclass: 'Ext.app.ViewController',