From bed680cff8bef6092e1076ac228a25492d463e13 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Wed, 22 May 2019 10:44:28 +0200 Subject: [PATCH] docs(forms): use a number as input value for formControlName (#30606) PR #29473 changed the docs to use a string as the input value of `formControlName`, as it used to only accept a string. This has been changed, and `formControlName` now accepts a string or a number, so the example in the docs can use a binding as they used to. PR Close #30606 --- .../forms/ts/nestedFormArray/nested_form_array_example.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/examples/forms/ts/nestedFormArray/nested_form_array_example.ts b/packages/examples/forms/ts/nestedFormArray/nested_form_array_example.ts index edf1217c92..1554c7ef17 100644 --- a/packages/examples/forms/ts/nestedFormArray/nested_form_array_example.ts +++ b/packages/examples/forms/ts/nestedFormArray/nested_form_array_example.ts @@ -17,7 +17,7 @@ import {FormArray, FormControl, FormGroup} from '@angular/forms';
- +