mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[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:
@@ -55,7 +55,7 @@
|
|||||||
#startForm
|
#startForm
|
||||||
*ngIf="hasStartForm()"
|
*ngIf="hasStartForm()"
|
||||||
[data]="values"
|
[data]="values"
|
||||||
[disableStartProcessButton]="!validateForm()"
|
[disableStartProcessButton]="processNameInput.invalid"
|
||||||
[processDefinitionId]="selectedProcessDef.id"
|
[processDefinitionId]="selectedProcessDef.id"
|
||||||
(outcomeClick)="onOutcomeClick($event)"
|
(outcomeClick)="onOutcomeClick($event)"
|
||||||
[showRefreshButton]="false">
|
[showRefreshButton]="false">
|
||||||
|
@@ -296,10 +296,6 @@ export class StartProcessInstanceComponent implements OnChanges, OnInit, OnDestr
|
|||||||
this.resetErrorMessage();
|
this.resetErrorMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
hasProcessName(): boolean {
|
|
||||||
return this.name ? true : false;
|
|
||||||
}
|
|
||||||
|
|
||||||
displayFn(process: any): string {
|
displayFn(process: any): string {
|
||||||
if (process) {
|
if (process) {
|
||||||
let processName = process;
|
let processName = process;
|
||||||
|
Reference in New Issue
Block a user