I'm experiencing an issue with the alignment of options in my form. The md-maxlength attribute is causing one line to be higher than the rest, as shown in the image below.
https://i.sstatic.net/3J3Ts.png
My goal is to move that specific textarea one line down while keeping the others in their original position. The code snippet below generates all the textareas:
<textarea ng-switch-when="text"
ng-model="$ctrl.assetData[rowNumber][column.modelPropertyText]"
ng-required="::column.required"
ng-disabled="column.disabled"
rows="1"
maxlength="{{column.maxlength}}"
md-maxlength="column.maxlength"
>
</textarea>
Is there a way to move a line down for cases where md-maxlenght is not null?