User bio now shows again
This commit is contained in:
parent
19b3857ba6
commit
ab7d3d6775
1 changed files with 6 additions and 4 deletions
|
@ -48,7 +48,7 @@
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
{#if userData && userBio}
|
{#if userData}
|
||||||
<Area>
|
<Area>
|
||||||
<span slot="header" id='header'>
|
<span slot="header" id='header'>
|
||||||
<img class='pfp' src='/pfp/{userData.username}.png'/>
|
<img class='pfp' src='/pfp/{userData.username}.png'/>
|
||||||
|
@ -69,9 +69,11 @@
|
||||||
</p>
|
</p>
|
||||||
<h2>Roles</h2>
|
<h2>Roles</h2>
|
||||||
<p>
|
<p>
|
||||||
{#each userBio.rolesArr as role}
|
{#if userBio && userBio.rolesArr}
|
||||||
<i class='follower'>{role}</i>
|
{#each userBio.rolesArr as role}
|
||||||
{/each}
|
<i class='follower'>{role}</i>
|
||||||
|
{/each}
|
||||||
|
{/if}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2>Following</h2>
|
<h2>Following</h2>
|
||||||
|
|
Loading…
Reference in a new issue