Before upgrade from 5.4.3, Account show tasksPrimary (all tasks, including childs tasks). In 5.5.0, we have only direct Account tasks.
In client/view/panel source, code use :
In client/view/panel source, code use :
Code:
setup: function () { this.parentScope = this.model.name; this.link = 'tasks'; this.panelName = 'tasksSide'; this.defs.create = true; this.url = this.model.name + '/' + this.model.id + '/' + this.link; if (this.parentScope == 'Account') { this.link = 'tasksPrimary'; }
Comment