Skip to content

Commit

Permalink
Merge pull request #997 from bcgov/feature/ALCS-1054
Browse files Browse the repository at this point in the history
Show PID error when Parcel type is not selected
  • Loading branch information
dhaselhan authored Sep 22, 2023
2 parents 763ecd8 + 042084f commit 4d23625
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h4>Parcel {{ parcelInd + 1 }} Information</h4>
<div class="grid-double">
<span *ngIf="parcel.pid">{{ parcel.pid | mask : '000-000-000' }}</span>
<app-no-data
[showRequired]="showErrors && parcel.ownershipType?.code === PARCEL_OWNERSHIP_TYPES.FEE_SIMPLE"
[showRequired]="showErrors && parcel.ownershipType?.code !== PARCEL_OWNERSHIP_TYPES.CROWN"
*ngIf="!parcel.pid"
></app-no-data>
<app-validation-error *ngIf="showErrors && parcel.pid && parcel.pid.length < 9">
Expand Down

0 comments on commit 4d23625

Please sign in to comment.