From ae6f2b4a9e60d370dc1556bdcf9566c8451c3426 Mon Sep 17 00:00:00 2001 From: maurofmferrao Date: Thu, 6 Mar 2025 16:10:13 +0000 Subject: [PATCH 1/2] Interactive actions: Only 10 actions are displayed relates to xibosignage/xibo#3619 --- ui/src/editor-core/properties-panel.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/src/editor-core/properties-panel.js b/ui/src/editor-core/properties-panel.js index d6dcfd41b8..a8c3992c60 100644 --- a/ui/src/editor-core/properties-panel.js +++ b/ui/src/editor-core/properties-panel.js @@ -2345,6 +2345,9 @@ PropertiesPanel.prototype.renderActionTab = function( dataType: 'json', data: { layoutId: app.mainObjectId, + start: 0, + // set a maximum number of action to be returned + length: 100, }, }).done(function(res) { // Filter actions by groups From aedb12932ada8188b96707b750124f10edf5d786 Mon Sep 17 00:00:00 2001 From: maurofmferrao Date: Fri, 7 Mar 2025 18:00:44 +0000 Subject: [PATCH 2/2] Increase max num to 1000 relates to xibosignage/xibo#3619 --- ui/src/editor-core/properties-panel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/editor-core/properties-panel.js b/ui/src/editor-core/properties-panel.js index a8c3992c60..9910d19904 100644 --- a/ui/src/editor-core/properties-panel.js +++ b/ui/src/editor-core/properties-panel.js @@ -2346,8 +2346,8 @@ PropertiesPanel.prototype.renderActionTab = function( data: { layoutId: app.mainObjectId, start: 0, - // set a maximum number of action to be returned - length: 100, + // set a maximum number of actions to be returned + length: 1000, }, }).done(function(res) { // Filter actions by groups