mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-1663] refreshing process list when a task is completed (#2452)
* [ADF-1663] refreshing process list when a task is completed * [ADF-1663] added check for process list
This commit is contained in:
@@ -366,7 +366,12 @@ export class ActivitiDemoComponent implements AfterViewInit, OnDestroy, OnInit {
|
||||
this.taskPagination.skipCount -= maxItems;
|
||||
}
|
||||
this.taskPage = this.currentPage(this.taskPagination.skipCount, maxItems);
|
||||
this.taskList.reload();
|
||||
if (this.taskList) {
|
||||
this.taskList.reload();
|
||||
}
|
||||
if (this.processList) {
|
||||
this.processList.reload();
|
||||
}
|
||||
}
|
||||
|
||||
onFormContentClick(content: any): void {
|
||||
|
Reference in New Issue
Block a user