<textarea> default content disappears when adding formControlName the <textarea> element
问题 I'm trying to create a Reactive Form in Angular 4.0.2, which has a <textarea> field with default content, pulled from the database. The content in the <textarea> is showing without any issues, but when I add the formControlName="sectionContent" to the <textarea> element, the content from it disappears. <textarea formControlName="sectionContent ">{{ section.sectionContent }}</textarea > This issue is only happening with the <textarea> element, as I have other <input> fields in the form, but