From 731f01adb1cd30b277a5f56048475798d8b83033 Mon Sep 17 00:00:00 2001 From: Santiago Kozak Date: Fri, 29 Dec 2023 06:48:27 -0300 Subject: [PATCH] [Glitch] Fix reply icon display in picture-in-picture footer Port 1cba91d6d116f482d5dd052bd89adb76bf3aa41e to glitch-soc Signed-off-by: Claire --- .../glitch/features/picture_in_picture/components/footer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/features/picture_in_picture/components/footer.jsx b/app/javascript/flavours/glitch/features/picture_in_picture/components/footer.jsx index 11b9866e8a..ee8179fc3b 100644 --- a/app/javascript/flavours/glitch/features/picture_in_picture/components/footer.jsx +++ b/app/javascript/flavours/glitch/features/picture_in_picture/components/footer.jsx @@ -181,7 +181,7 @@ class Footer extends ImmutablePureComponent { if (status.get('in_reply_to_id', null) === null) { replyIcon = 'reply'; - replyIconComponent = RepeatIcon; + replyIconComponent = ReplyIcon; replyTitle = intl.formatMessage(messages.reply); } else { replyIcon = 'reply-all';