fix: add getActionItemDataList to dashlet for EspoCRM v9 compatibility

This commit is contained in:
2026-03-31 22:53:10 +00:00
parent b9abe5f921
commit f915faafdc
@@ -72,5 +72,14 @@ define('modules/smart-assistant/views/dashlets/smart-assistant', ['view'], funct
actionRefresh: function () { actionRefresh: function () {
this.loadSummary(); this.loadSummary();
}, },
getActionItemDataList: function () {
return [
{
name: 'refresh',
iconHtml: '<span class="fas fa-sync-alt"></span>',
},
];
},
}); });
}); });