We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdeb7b5 commit 70c462dCopy full SHA for 70c462d
frontend/src/lib/components/mod-details/ModDetails.svelte
@@ -284,7 +284,7 @@
284
<button class="btn w-full h-full space-x-4" on:click={() => $search = `author:"${author.user.username}"`}>
285
<div class="h-12 w-12">
286
{#if 'avatar' in author.user}
287
- <img class="rounded-full w-ful h-full" alt="{author.user.username} Avatar" src={author.user.avatar ?? `${$siteURL}/images/no_image.webp`} />
+ <img class="rounded-full w-ful h-full" alt="{author.user.username} Avatar" src={author.user.avatar ? author.user.avatar : `${$siteURL}/images/no_image.webp`} />
288
{/if}
289
</div>
290
<div class="flex-auto flex flex-col text-left">
0 commit comments