Skip to content

Commit

Permalink
fix: πŸ› form array get raw value should work
Browse files Browse the repository at this point in the history
βœ… Closes: #116
  • Loading branch information
NetanelBasal committed Nov 17, 2021
1 parent 2544ff9 commit 565c885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/reactive-forms/src/lib/form-array.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class FormArray<
}

getRawValue(): T[] {
return this.value;
return super.getRawValue();
}

push(control: Control) {
Expand Down

0 comments on commit 565c885

Please sign in to comment.