From 685d0ada9001c4c3807a35cddcc27e076dc1df42 Mon Sep 17 00:00:00 2001 From: Matthew Wire Date: Wed, 6 Oct 2021 14:38:47 +0100 Subject: [PATCH] Allow for more than 25 system status checks to be loaded --- ang/crmStatusPage.js | 2 +- ang/crmStatusPage/StatusPageCtrl.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ang/crmStatusPage.js b/ang/crmStatusPage.js index 9693485b66..4be75df5c8 100644 --- a/ang/crmStatusPage.js +++ b/ang/crmStatusPage.js @@ -9,7 +9,7 @@ resolve: { statusData: function(crmApi) { - return crmApi('System', 'check', {sequential: 1}); + return crmApi('System', 'check', {sequential: 1, options: {limit: 0}}); } } }); diff --git a/ang/crmStatusPage/StatusPageCtrl.js b/ang/crmStatusPage/StatusPageCtrl.js index 530d7ffdbe..0fd79df29f 100644 --- a/ang/crmStatusPage/StatusPageCtrl.js +++ b/ang/crmStatusPage/StatusPageCtrl.js @@ -10,7 +10,7 @@ // Refresh the list. Optionally execute api calls first. function refresh(apiCalls, title) { title = title || 'Untitled operation'; - apiCalls = (apiCalls || []).concat([['System', 'check', {sequential: 1}]]); + apiCalls = (apiCalls || []).concat([['System', 'check', {sequential: 1, options: {limit: 0}}]]); $('#crm-status-list').block(); crmApi(apiCalls, true) .then(function(results) { -- 2.25.1