Skip to content

Commit 565c885

Browse files
committed
fix: 🐛 form array get raw value should work
Closes: #116
1 parent 2544ff9 commit 565c885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/reactive-forms/src/lib/form-array.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class FormArray<
101101
}
102102

103103
getRawValue(): T[] {
104-
return this.value;
104+
return super.getRawValue();
105105
}
106106

107107
push(control: Control) {

0 commit comments

Comments
 (0)