From f915faafdc2cb8af692ab7512307837b0d4c7c90 Mon Sep 17 00:00:00 2001 From: Chaim Date: Tue, 31 Mar 2026 22:53:10 +0000 Subject: [PATCH] fix: add getActionItemDataList to dashlet for EspoCRM v9 compatibility --- .../src/views/dashlets/smart-assistant.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/files/client/custom/modules/smart-assistant/src/views/dashlets/smart-assistant.js b/files/client/custom/modules/smart-assistant/src/views/dashlets/smart-assistant.js index fd29790..643bb36 100644 --- a/files/client/custom/modules/smart-assistant/src/views/dashlets/smart-assistant.js +++ b/files/client/custom/modules/smart-assistant/src/views/dashlets/smart-assistant.js @@ -72,5 +72,14 @@ define('modules/smart-assistant/views/dashlets/smart-assistant', ['view'], funct actionRefresh: function () { this.loadSummary(); }, + + getActionItemDataList: function () { + return [ + { + name: 'refresh', + iconHtml: '', + }, + ]; + }, }); });