feat: adds email as fallback for name in member details
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
74a2d07c24
commit
b59a4ef61a
10 changed files with 212 additions and 10 deletions
|
|
@ -129,7 +129,12 @@
|
|||
"""
|
||||
}
|
||||
>
|
||||
{member.first_name}
|
||||
{if MvWeb.MemberLive.Index.blank?(member.first_name) &&
|
||||
MvWeb.MemberLive.Index.blank?(member.last_name) do
|
||||
MvWeb.MemberLive.Index.display_name(member)
|
||||
else
|
||||
member.first_name
|
||||
end}
|
||||
</:col>
|
||||
<:col
|
||||
:let={member}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue