[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:
Silviu Popa
2019-04-30 12:13:10 +03:00
committed by Eugenio Romano
parent 5f3d665ab5
commit 860529058c
39 changed files with 1074 additions and 78 deletions

View File

@@ -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() {