Skip to content

Commit

Permalink
[ADF-5298] Fix Service Tasks not loading (#6413)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcanonieto authored Dec 4, 2020
1 parent 93ac247 commit 786984b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 786984b

Please sign in to comment.