Skip to content

Commit

Permalink
Text change for pass required card (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-walsh22 authored Aug 13, 2024
1 parent 0adbcbd commit 233a413
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/card/card.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
<h2>{{ data?.name }}</h2>
<span *ngIf="data?.status === 'open' && !data?.specialClosure" class="text-success d-flex align-items-center">
<div class="open-circle"></div>
<strong class="text-override">Passes required</strong>
<strong class="text-override">Day-use pass required</strong>
</span>
<span *ngIf="data?.status === 'closed' && !data?.specialClosure" class="text-danger d-flex align-items-center">
<div class="closed-circle"></div>
<strong class="text-override">Passes not required</strong>
<strong class="text-override">Day-use pass not required</strong>
</span>
<span *ngIf="data?.specialClosure === true && data?.status === 'closed'" class="text-danger d-flex align-items-center">
<div class="closed-circle"></div>
Expand Down

0 comments on commit 233a413

Please sign in to comment.