Skip to content

Commit

Permalink
fix: exclamation rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
sumeyyeKurtulus committed Jul 17, 2024
1 parent f5b030a commit e8a65c0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class ExtensibleFormComponent<R = any> {

extraPropertiesKey = EXTRA_PROPERTIES_KEY;
groupedPropList!: GroupedFormPropList;
groupedPropListOfArray!: FormProp<any>[][];
groupedPropListOfArray: FormProp<any>[][];
record!: R;

get form(): UntypedFormGroup {
Expand All @@ -76,7 +76,7 @@ export class ExtensibleFormComponent<R = any> {
}

//TODO: Reactor this method
isAnyGroupMemberVisible(index: number, data: any) {
isAnyGroupMemberVisible(index: number, data) {
const { items } = this.groupedPropList;
const formPropList = items[index].formPropList.toArray();
return formPropList.some(prop => prop.visible(data));
Expand Down

0 comments on commit e8a65c0

Please sign in to comment.