From f159fbaa2c924862645991a00b5352c212bf16ab Mon Sep 17 00:00:00 2001 From: Vito Date: Tue, 15 May 2018 10:45:38 +0100 Subject: [PATCH] [ADF-2967] fixed create new task navigation (#3322) * [ADF-2967] fixed create new task navigation * [ADF-2967] removed extra variables * [ADF-2967] removed unused methods --- .../process-service/process-service.component.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/demo-shell/src/app/components/process-service/process-service.component.ts b/demo-shell/src/app/components/process-service/process-service.component.ts index b3fd71f086..13618384ea 100644 --- a/demo-shell/src/app/components/process-service/process-service.component.ts +++ b/demo-shell/src/app/components/process-service/process-service.component.ts @@ -342,14 +342,10 @@ export class ProcessServiceComponent implements AfterViewInit, OnDestroy, OnInit } navigateStartProcess(): void { - this.resetProcessFilters(); - this.reloadProcessFilters(); this.currentProcessInstanceId = currentProcessIdNew; } navigateStartTask(): void { - this.resetTaskFilters(); - this.reloadTaskFilters(); this.currentTaskId = currentTaskIdNew; } @@ -450,14 +446,6 @@ export class ProcessServiceComponent implements AfterViewInit, OnDestroy, OnInit this.currentTaskId = taskId; } - private resetProcessFilters(): void { - this.processFilter = null; - } - - private resetTaskFilters(): void { - this.taskFilter = null; - } - private reloadProcessFilters(): void { this.activitiprocessfilter.selectFilter(this.activitiprocessfilter.getCurrentFilter()); }