this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use static avatar in composer

+7 -1
+6 -1
src/components/account-block.jsx
··· 13 13 skeleton, 14 14 account, 15 15 avatarSize = 'xl', 16 + useAvatarStatic = false, 16 17 instance, 17 18 external, 18 19 internal, ··· 81 82 } 82 83 }} 83 84 > 84 - <Avatar url={avatar} size={avatarSize} squircle={bot} /> 85 + <Avatar 86 + url={useAvatarStatic ? avatarStatic : avatar || avatarStatic} 87 + size={avatarSize} 88 + squircle={bot} 89 + /> 85 90 <span class="account-block-content"> 86 91 {!hideDisplayName && ( 87 92 <>
+1
src/components/compose.jsx
··· 613 613 account={currentAccountInfo} 614 614 accountInstance={currentAccount.instanceURL} 615 615 hideDisplayName 616 + useAvatarStatic 616 617 /> 617 618 )} 618 619 {!standalone ? (