[ACA-3232] Fix console error expression has changed after it has… (#5656)

* [ACA-3232] Fix console error expression has been changed after it has been checked, remove unused method

* [ACA-3232] Remove not needed (this.)
This commit is contained in:
arditdomi
2020-04-30 10:14:38 +01:00
committed by GitHub
parent 04a29ebc05
commit f6f41de46f
2 changed files with 1 additions and 5 deletions

View File

@@ -55,7 +55,7 @@
#startForm
*ngIf="hasStartForm()"
[data]="values"
[disableStartProcessButton]="!validateForm()"
[disableStartProcessButton]="processNameInput.invalid"
[processDefinitionId]="selectedProcessDef.id"
(outcomeClick)="onOutcomeClick($event)"
[showRefreshButton]="false">

View File

@@ -296,10 +296,6 @@ export class StartProcessInstanceComponent implements OnChanges, OnInit, OnDestr
this.resetErrorMessage();
}
hasProcessName(): boolean {
return this.name ? true : false;
}
displayFn(process: any): string {
if (process) {
let processName = process;