diff --git a/projects/ajsf-core/src/lib/json-schema-form.component.ts b/projects/ajsf-core/src/lib/json-schema-form.component.ts index 53dc0e0a..7c19b2d9 100755 --- a/projects/ajsf-core/src/lib/json-schema-form.component.ts +++ b/projects/ajsf-core/src/lib/json-schema-form.component.ts @@ -197,6 +197,9 @@ export class JsonSchemaFormComponent implements ControlValueAccessor, OnChanges, } ngOnChanges(changes: SimpleChanges) { + if (changes.data && isEqual(changes.data.previousValue, changes.data.currentValue)) { + return; + } this.updateForm(); // Check if there's changes in Framework then load assets if that's the if (changes.framework) {