mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-5298] Fix Service Tasks not loading (#6413)
This commit is contained in:
@@ -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"
|
||||||
|
@@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user