Skip to content

Commit

Permalink
feat(match): display match receive/deliver in order details
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen committed Jun 25, 2024
1 parent 51bf3b3 commit 4b91cd6
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,22 @@
</small>
</div>
</div>
<div class="row" *ngIf="orderItem.type === 'match-receive'">
<div class="col text-secondary">
<small
><fa-icon [icon]="'exchange-alt'" class="mr-2"></fa-icon>
<span>mottatt fra elev</span>
</small>
</div>
</div>
<div class="row" *ngIf="orderItem.type === 'match-deliver'">
<div class="col text-secondary">
<small
><fa-icon [icon]="'exchange-alt'" class="mr-2"></fa-icon>
<span>overlevert til elev</span>
</small>
</div>
</div>
<div
class="row justify-content-between text-secondary"
*ngIf="
Expand Down

0 comments on commit 4b91cd6

Please sign in to comment.