Skip to content

Commit

Permalink
fix(customer-detail-card): better null checks
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen committed Oct 15, 2024
1 parent 9f96863 commit 5c1df4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h4>{{ customerDetail.name }}</h4>

<li
class="list-group-item list-group-item-dark"
*ngIf="customerDetail.guardian.name"
*ngIf="customerDetail?.guardian?.name"
>
<small>
<div class="text-center">
Expand Down

0 comments on commit 5c1df4a

Please sign in to comment.