From 486ed27299ed80ef057cffe0794245a000f2baed Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 30 Sep 2020 10:45:07 +0200 Subject: [PATCH] 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 --- www/dashboard/RunningTasks.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/www/dashboard/RunningTasks.js b/www/dashboard/RunningTasks.js index fdf7122f..f990a6e2 100644 --- a/www/dashboard/RunningTasks.js +++ b/www/dashboard/RunningTasks.js @@ -8,6 +8,13 @@ Ext.define('PBS.RunningTasks', { hideHeaders: true, rowLines: false, + scrollable: true, + maxHeight: 500, + + viewConfig: { + deferEmptyText: false, + }, + controller: { xclass: 'Ext.app.ViewController',