Skip to content

Commit

Permalink
Fix possibly undefined membership
Browse files Browse the repository at this point in the history
  • Loading branch information
wpf500 committed Aug 1, 2024
1 parent b890a3e commit 95e6219
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ block contents
tr
td
a(href='/members/' + contact.id)= contact.fullname || contact.email
if contact.membership.isActive
if contact.membership && contact.membership.isActive
|
|
span.label.label-success Member
Expand Down

0 comments on commit 95e6219

Please sign in to comment.