[ADF-5298] Fix Service Tasks not loading (#6413)

This commit is contained in:
davidcanonieto
2020-12-04 11:49:56 +00:00
committed by GitHub
parent 93ac247c53
commit 786984bfee
2 changed files with 17 additions and 16 deletions

View File

@@ -2,7 +2,8 @@
fxFill>
<adf-cloud-service-task-filters [appName]="appName"
[filterParam]="{index: 0}"
(filterClick)="onTaskFilterSelected($event)">
(filterClicked)="onTaskFilterSelected($event)"
(filterSelected)="onTaskFilterSelected($event)">
</adf-cloud-service-task-filters>
<div fxLayout="column"

View File

@@ -64,21 +64,21 @@ export class ServiceTaskListCloudComponent extends BaseTaskListCloudComponent {
maxItems: this.size,
skipCount: this.skipCount,
sorting: this.sorting,
id: this.queryParams.serviceTaskId,
activityName: this.queryParams.activityName,
activityType: this.queryParams.activityType,
completedDate: this.queryParams.completedDate,
elementId: this.queryParams.elementId,
executionId: this.queryParams.executionId,
processDefinitionId: this.queryParams.processDefinitionId,
processDefinitionKey: this.queryParams.processDefinitionKey,
processDefinitionVersion: this.queryParams.processDefinitionVersion,
processInstanceId: this.queryParams.processInstanceId,
serviceFullName: this.queryParams.serviceFullName,
serviceName: this.queryParams.serviceName,
serviceVersion: this.queryParams.serviceVersion,
startedDate: this.queryParams.startedDate,
status: this.queryParams.status
id: this.queryParams?.serviceTaskId,
activityName: this.queryParams?.activityName,
activityType: this.queryParams?.activityType,
completedDate: this.queryParams?.completedDate,
elementId: this.queryParams?.elementId,
executionId: this.queryParams?.executionId,
processDefinitionId: this.queryParams?.processDefinitionId,
processDefinitionKey: this.queryParams?.processDefinitionKey,
processDefinitionVersion: this.queryParams?.processDefinitionVersion,
processInstanceId: this.queryParams?.processInstanceId,
serviceFullName: this.queryParams?.serviceFullName,
serviceName: this.queryParams?.serviceName,
serviceVersion: this.queryParams?.serviceVersion,
startedDate: this.queryParams?.startedDate,
status: this.queryParams?.status
} as ServiceTaskQueryCloudRequestModel;
return requestNode;
}