Fixed textarea resize bug
This commit is contained in:
parent
5f6224210b
commit
59c347f88c
|
@ -17,9 +17,11 @@
|
||||||
placeholder="{{'DMP-EDITOR.FIELDS.DESCRIPTION' | translate}}" formControlName="description">
|
placeholder="{{'DMP-EDITOR.FIELDS.DESCRIPTION' | translate}}" formControlName="description">
|
||||||
</textarea>
|
</textarea>
|
||||||
<!-- <mat-error *ngIf="formGroup.get('description').hasError('backendError')">
|
<!-- <mat-error *ngIf="formGroup.get('description').hasError('backendError')">
|
||||||
{{formGroup.get('description').getError('backendError').message}}</mat-error>
|
{{formGroup.get('description').getError('backendError').message}}
|
||||||
<mat-error *ngIf="formGroup.get('description').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' |
|
</mat-error>
|
||||||
translate}}</mat-error> -->
|
<mat-error *ngIf="formGroup.get('description').hasError('required')">
|
||||||
|
{{'GENERAL.VALIDATION.REQUIRED' | translate}}
|
||||||
|
</mat-error> -->
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
@ -306,7 +306,7 @@ select {
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea{
|
textarea{
|
||||||
height: auto !important;
|
// height: auto !important;
|
||||||
resize: none;
|
resize: none;
|
||||||
line-height: $bmd-line-height !important;
|
line-height: $bmd-line-height !important;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue