Skip to content

Commit

Permalink
PR commit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DhaaraniCIT committed Feb 14, 2025
1 parent bee5bde commit e4f8508
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
<div *ngIf="isInternalIDSelectionActive">
<div class="tw-mb-14-px">
<div class="tw-mb-10-px">
<app-mandatory-field></app-mandatory-field><label for="" class="tw-text-14-px tw-text-form-label-text-color tw-font-400 tw-ml-6-px">Enter {{ this.form.controls.customFieldType.value | snakeCaseToSpaceCase | lowercase }} internal ID</label>
<app-mandatory-field></app-mandatory-field><label for="" class="tw-text-14-px tw-text-form-label-text-color tw-font-400 tw-ml-6-px">Enter {{ this.form.controls.customFieldType.value | snakeCaseToSpaceCase | lowercase }} internal id</label>
</div>
<div>
<input type="text" class="tw-border-box-color" [ngClass]="[form.controls.internalId.invalid && form.controls.internalId.touched ? 'error-box' : 'normal-box']" pInputText formControlName="internalId" [placeholder]="'Enter {{ this.form.controls.customFieldType.value | snakeCaseToSpaceCase | lowercase }} internal ID'" required>
<input type="text" class="tw-border-box-color" [ngClass]="[form.controls.internalId.invalid && form.controls.internalId.touched ? 'error-box' : 'normal-box']" pInputText formControlName="internalId" [placeholder]="'Enter {{ this.form.controls.customFieldType.value | snakeCaseToSpaceCase | lowercase }} internal id'" required>
<app-mandatory-error-message *ngIf="form.controls.internalId.touched && !form.controls.internalId.valid && !form.controls.internalId.disabled" [customErrorMessage]="'Please enter internal id'"></app-mandatory-error-message>
</div>
</div>
Expand Down

0 comments on commit e4f8508

Please sign in to comment.