Skip to content
Snippets Groups Projects
Commit 1c5c0b28 authored by jojohoch's avatar jojohoch
Browse files

Fix the display of the number of rows for text areas

#657
parent 3bdd37fc
No related branches found
No related tags found
No related merge requests found
Pipeline #59443 failed
......@@ -38,7 +38,7 @@ import { TextInputComponent } from 'common/directives/text-input-component.direc
[expectedCharactersCount]="elementModel.expectedCharactersCount"
[fontSize]="elementModel.styling.fontSize"
(dynamicRowsChange)="dynamicRows = $event"
[rows]="elementModel.hasDynamicRowCount && dynamicRows ? dynamicRows : elementModel.rows"
[rows]="elementModel.hasDynamicRowCount && dynamicRows ? dynamicRows : elementModel.rowCount"
[attr.inputmode]="elementModel.showSoftwareKeyboard || elementModel.hideNativeKeyboard ? 'none' : 'text'"
[formControl]="elementFormControl"
[readonly]="elementModel.readOnly"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment