Hi, I would appreciate any help with disabling or removing "Reject" action in Case module as per image attached.
Thanks in advance
Thanks in advance
define('custom:views/case/record/detail', 'crm:views/case/record/detail', function (Dep) { return Dep.extend({ setupActionItems: function () { Dep.prototype.setupActionItems.call(this); this.removeButton('reject'); } }); });
{ "recordViews": { "detail": "custom:views/case/record/detail" } }
Comment