mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
temporary switch off the FormModel json typing
This commit is contained in:
@@ -67,7 +67,7 @@ export class FormModel {
|
||||
readonly processDefinitionId: string;
|
||||
readonly selectedOutcome: string;
|
||||
|
||||
json: FormRepresentationModel;
|
||||
json: any;
|
||||
nodeId: string;
|
||||
contentHost: string;
|
||||
values: FormValues = {};
|
||||
@@ -83,7 +83,7 @@ export class FormModel {
|
||||
processVariables: ProcessVariableModel[] = [];
|
||||
variables: FormVariableModel[] = [];
|
||||
|
||||
constructor(json?: FormRepresentationModel, formValues?: FormValues, readOnly: boolean = false, protected formService?: FormService) {
|
||||
constructor(json?: any, formValues?: FormValues, readOnly: boolean = false, protected formService?: FormService) {
|
||||
this.readOnly = readOnly;
|
||||
this.json = json;
|
||||
|
||||
|
Reference in New Issue
Block a user