Skip to content

Commit

Permalink
Merge pull request #780 from bcgov/OleksandrBohuslavskyi-patch-1
Browse files Browse the repository at this point in the history
90 days fix
  • Loading branch information
ychung-mot authored Nov 12, 2024
2 parents c31070b + 17fa5ad commit 49f39bf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ <h2 class="title">Aggregated Listings</h2>
<td>{{ row.primaryHostNm }}</td>
<td>{{ row.matchAddressTxt }} </td>
<td>
<span [class.night-stayed-exceeded]="row.nightsBookedYtdQty>90">
<span [class.night-stayed-exceeded]="row.nightsBookedYtdQty>=90">
{{ row.nightsBookedYtdQty }}
<i class="pi pi-info-circle" pTooltip="Over 90 nights stayed"
*ngIf="row.nightsBookedYtdQty>90"></i>
*ngIf="row.nightsBookedYtdQty>=90"></i>
</span>
</td>
<td>
Expand Down Expand Up @@ -380,4 +380,4 @@ <h2 class="title">Aggregated Listings</h2>
(click)="onCancelFilters()"></button>
</div>
</ng-template>
</p-sidebar>
</p-sidebar>

0 comments on commit 49f39bf

Please sign in to comment.