From d90497a3f8bd5ac156ff797287889ea4100e2d0f Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Thu, 12 Sep 2019 13:40:38 +0100 Subject: [PATCH] fix FormRepresentationModel interface --- lib/core/form/components/widgets/core/form.model.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/core/form/components/widgets/core/form.model.ts b/lib/core/form/components/widgets/core/form.model.ts index f4396b0fe8..573acd5b87 100644 --- a/lib/core/form/components/widgets/core/form.model.ts +++ b/lib/core/form/components/widgets/core/form.model.ts @@ -48,6 +48,7 @@ export interface FormRepresentationModel { tabs?: any[]; outcomes?: any[]; formDefinition?: { + [key: string]: any; fields?: any[]; }; }