summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/forms/crud-form/formly-textarea-type/formly-textarea-type.component.html
blob: 603a3dd60330912c11f05096810527dc0400772b (plain)
1
2
3
4
5
6
7
8
9
<textarea #textArea
          [formControl]="formControl"
          [cols]="props.cols"
          [rows]="props.rows"
          class="form-control"
          [class.is-invalid]="showError"
          [formlyAttributes]="field"
          (change)="onChange()">
</textarea>