[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> fxFill>
<adf-cloud-service-task-filters [appName]="appName" <adf-cloud-service-task-filters [appName]="appName"
[filterParam]="{index: 0}" [filterParam]="{index: 0}"
(filterClick)="onTaskFilterSelected($event)"> (filterClicked)="onTaskFilterSelected($event)"
(filterSelected)="onTaskFilterSelected($event)">
</adf-cloud-service-task-filters> </adf-cloud-service-task-filters>
<div fxLayout="column" <div fxLayout="column"

View File

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