mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-11 00:18:51 +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 && (
|
{showAvatar && (
|
||||||
<>
|
<>
|
||||||
<Avatar url={avatar} />{' '}
|
<Avatar url={avatarStatic || avatar} />{' '}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{displayName && !short ? (
|
{displayName && !short ? (
|
||||||
|
|
|
@ -639,7 +639,7 @@ function Status({
|
||||||
};
|
};
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Avatar url={avatarStatic} size="xxl" />
|
<Avatar url={avatarStatic || avatar} size="xxl" />
|
||||||
</a>
|
</a>
|
||||||
)}
|
)}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
Loading…
Reference in a new issue