From 77415d08a08ff1859a7a59963727a8fb4e353e26 Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Fri, 13 Sep 2019 13:12:24 +0100 Subject: [PATCH] temporary switch off the FormModel json typing --- lib/core/form/components/widgets/core/form.model.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/form/components/widgets/core/form.model.ts b/lib/core/form/components/widgets/core/form.model.ts index 573acd5b87..ae5476cf78 100644 --- a/lib/core/form/components/widgets/core/form.model.ts +++ b/lib/core/form/components/widgets/core/form.model.ts @@ -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;