Fix name on post when no full_name

This commit is contained in:
Cadence Fish
2020-03-01 15:35:45 +13:00
parent d32a12a134
commit 9969dd8c7d
2 changed files with 9 additions and 4 deletions

View File

@@ -6,7 +6,11 @@ mixin post(post, headerWithNavigation)
.user-header
header.user-header-inner
img(src=post.ownerPfpCacheP width=150 height=150 alt="").pfp
a.name(href=`/u/${post.getBasicOwner().username}`)= `${post.data.owner.full_name} (@${post.getBasicOwner().username})`
a.name(href=`/u/${post.getBasicOwner().username}`)
if post.data.owner.full_name
= `${post.data.owner.full_name} (@${post.getBasicOwner().username})`
else
= `@${post.getBasicOwner().username}`
if headerWithNavigation
button.navigate-posts.previous
img(src="/static/img/arrow-circled.svg" alt="Previous post." style="transform: rotate(180deg)").icon