url validator fix

This commit is contained in:
Diamantis Tziotzios 2024-06-21 16:21:11 +03:00
parent 7c4701cb22
commit b89df00925
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
<input matInput [formControl]="propertiesFormGroup?.get(field.id).get('textValue')">
<mat-error *ngIf="propertiesFormGroup?.get(field.id).get('textValue').hasError('backendError')">{{propertiesFormGroup?.get(field.id).get('textValue').getError('backendError').message}}</mat-error>
<mat-error *ngIf="propertiesFormGroup?.get(field.id).get('textValue').hasError('required')">{{'GENERAL.VALIDATION.REQUIRED' | translate}}</mat-error>
<mat-error *ngIf="propertiesFormGroup?.get(field.id).get('textValue').hasError('UrlWithVisibilityRulesValidator')">{{'GENERAL.VALIDATION.URL.MESSAGE' | translate}}</mat-error>
<mat-error *ngIf="propertiesFormGroup?.get(field.id).get('textValue').hasError('pattern')">{{'GENERAL.VALIDATION.URL.MESSAGE' | translate}}</mat-error>
</mat-form-field>
</div>
</ng-container>