mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
[ADF-4409] DemoShell - ADF compatibility with Activiti 7 (#4646)
* [ADF-4409] PorcessServicesCloud - add community page * [ADF-4409] - add process and task details page * [ADF-4409] fix lint and reset package-lock * [ADF-4409] - PR changes * [ADF-4409] - PR changes * [ADF-4409] - fix start task/process redirection * [ADF-4409] - fix unit tests
This commit is contained in:
committed by
Eugenio Romano
parent
5f3d665ab5
commit
860529058c
@@ -67,7 +67,7 @@ export class TaskHeaderCloudComponent implements OnInit {
|
||||
) { }
|
||||
|
||||
ngOnInit() {
|
||||
if (this.appName && this.taskId) {
|
||||
if ((this.appName || this.appName === '') && this.taskId) {
|
||||
this.loadTaskDetailsById(this.appName, this.taskId);
|
||||
}
|
||||
|
||||
@@ -226,7 +226,7 @@ export class TaskHeaderCloudComponent implements OnInit {
|
||||
}
|
||||
|
||||
isTaskValid() {
|
||||
return this.appName && this.taskId;
|
||||
return (this.appName || this.appName === '') && this.taskId;
|
||||
}
|
||||
|
||||
isTaskAssigned() {
|
||||
|
Reference in New Issue
Block a user