mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
fix fake-toot avatar
This commit is contained in:
parent
799878f294
commit
e6ca9d2a89
2 changed files with 2 additions and 2 deletions
|
@ -131,7 +131,7 @@ function NewEmoji() {
|
|||
<div>
|
||||
<h2>Add new custom emoji</h2>
|
||||
|
||||
<FakeToot content="bazinga">
|
||||
<FakeToot>
|
||||
Look at this new custom emoji {emojiOrShortcode} isn't it cool?
|
||||
</FakeToot>
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ module.exports = function FakeToot({children}) {
|
|||
<div className="toot expanded">
|
||||
<div className="contentgrid">
|
||||
<span className="avatar">
|
||||
<img src="http://localhost:8080/assets/default_avatars/GoToSocial_icon6.png" alt=""/>
|
||||
<img src={account.avatar} alt=""/>
|
||||
</span>
|
||||
<span className="displayname">{account.display_name.trim().length > 0 ? account.display_name : account.username}</span>
|
||||
<span className="username">@{account.username}</span>
|
||||
|
|
Loading…
Reference in a new issue