From 41ab32f2f32e13bfd370bc64e3ff649feb5b2619 Mon Sep 17 00:00:00 2001 From: Anna Manchenkova Date: Fri, 2 Jun 2023 18:44:48 +0300 Subject: [PATCH] feat: save button is available in the module configuration --- .../lib/components/ncform-wrapper/ncform-wrapper.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/libs/shared/src/lib/components/ncform-wrapper/ncform-wrapper.component.ts b/web/libs/shared/src/lib/components/ncform-wrapper/ncform-wrapper.component.ts index 6b2baa79..a3be03a9 100644 --- a/web/libs/shared/src/lib/components/ncform-wrapper/ncform-wrapper.component.ts +++ b/web/libs/shared/src/lib/components/ncform-wrapper/ncform-wrapper.component.ts @@ -67,7 +67,7 @@ export class NcformWrapperComponent implements OnInit, OnChanges { return; } - if (schema && !compareObjects(this.app.$data.schema, this.schema)) { + if (schema) { this.app.$data.schema = this.schema; }