From 601e42ac35c45d3af903c200ca296668e6b93040 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 11 Jul 2020 12:53:27 +0200 Subject: [PATCH] ui: running tasks: update limit to 100 else we'll never see the 99+ tasks .. Signed-off-by: Thomas Lamprecht --- www/data/RunningTasksStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/data/RunningTasksStore.js b/www/data/RunningTasksStore.js index d78c44e0..1f8cf04c 100644 --- a/www/data/RunningTasksStore.js +++ b/www/data/RunningTasksStore.js @@ -13,7 +13,7 @@ Ext.define('PBS.data.RunningTasksStore', { proxy: { type: 'proxmox', // maybe separate api call? - url: '/api2/json/nodes/localhost/tasks?running=1', + url: '/api2/json/nodes/localhost/tasks?running=1&limit=100', }, }); me.callParent([config]);