Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions projects/ajsf-core/src/lib/json-schema-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down