Skip to content

Commit

Permalink
fix (#946)
Browse files Browse the repository at this point in the history
  • Loading branch information
Olya-web7 authored Feb 18, 2022
1 parent 4491143 commit 3b2363d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h4 class="step-title">Юридична адреса</h4>

<label class="step-label">Вулиця<span class="step-required">*</span></label>
<mat-form-field>
<input matInput class="step-input" type="text" formControlName="street" autocomplete="none">
<input matInput class="step-input" type="text" formControlName="street" autocomplete="none" maxlength="30">
</mat-form-field>
<app-validation-hint-for-input type="requiredEmptyField"
[isEmptyCheck]="LegalAddressFormGroup.get('street').errors?.required"
Expand Down Expand Up @@ -120,7 +120,7 @@ <h4>Фактична адреса</h4>

<label class="step-label">Вулиця<span class="step-required">*</span></label>
<mat-form-field>
<input matInput class="step-input" type="text" formControlName="street" autocomplete="none">
<input matInput class="step-input" type="text" formControlName="street" autocomplete="none" maxlength="30">
</mat-form-field>
<app-validation-hint-for-input type="requiredEmptyField"
[isEmptyCheck]="ActualAddressFormGroup.get('street').errors?.required"
Expand Down

0 comments on commit 3b2363d

Please sign in to comment.