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
No known key found for this signature in database
GPG Key ID: 81015DF9AA8607E1
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

View File

@ -268,11 +268,12 @@ body
display: block
.user-header-inner
grid-row: 1
grid-column: 2
display: flex
align-items: center
justify-content: center
grid-row: 1
grid-column: 2
margin: 0px 10px
.pfp
$size: 40px
@ -297,7 +298,7 @@ body
font-size: 20px
line-height: 1.4
unicode-bidi: plaintext
@media screen and (max-width: $layout-a-max)
font-size: 18px