mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-23 00:56:23 +01:00
Default to static, with fallback
This commit is contained in:
parent
5bb8b3ce29
commit
81bf7aeebe
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ function NameText({
|
|||
>
|
||||
{showAvatar && (
|
||||
<>
|
||||
<Avatar url={avatar} />{' '}
|
||||
<Avatar url={avatarStatic || avatar} />{' '}
|
||||
</>
|
||||
)}
|
||||
{displayName && !short ? (
|
||||
|
|
|
@ -639,7 +639,7 @@ function Status({
|
|||
};
|
||||
}}
|
||||
>
|
||||
<Avatar url={avatarStatic} size="xxl" />
|
||||
<Avatar url={avatarStatic || avatar} size="xxl" />
|
||||
</a>
|
||||
)}
|
||||
<div class="container">
|
||||
|
|
Loading…
Reference in a new issue