mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-23 07:32:02 +01:00
Fix reply icon display in picture-in-picture footer (#28519)
This commit is contained in:
parent
fb5eb1f655
commit
1cba91d6d1
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ class Footer extends ImmutablePureComponent {
|
||||||
|
|
||||||
if (status.get('in_reply_to_id', null) === null) {
|
if (status.get('in_reply_to_id', null) === null) {
|
||||||
replyIcon = 'reply';
|
replyIcon = 'reply';
|
||||||
replyIconComponent = RepeatIcon;
|
replyIconComponent = ReplyIcon;
|
||||||
replyTitle = intl.formatMessage(messages.reply);
|
replyTitle = intl.formatMessage(messages.reply);
|
||||||
} else {
|
} else {
|
||||||
replyIcon = 'reply-all';
|
replyIcon = 'reply-all';
|
||||||
|
|
Loading…
Reference in a new issue