From: Claire Date: Fri, 23 Jul 2021 00:53:17 +0000 (+0200) Subject: [Glitch] Fix crashes with Microsoft Translate on Microsoft Edge X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=2f6ff141984e7df12f7bcc64b2c8754542151a70;p=mastodon.git [Glitch] Fix crashes with Microsoft Translate on Microsoft Edge Port e9659ae0312d0bf0acf2b55eed5dc688929cae04 to glitch-soc Signed-off-by: Claire --- diff --git a/app/javascript/flavours/glitch/components/status.js b/app/javascript/flavours/glitch/components/status.js index 782fd918e..d3944b0c3 100644 --- a/app/javascript/flavours/glitch/components/status.js +++ b/app/javascript/flavours/glitch/components/status.js @@ -543,9 +543,8 @@ class Status extends ImmutablePureComponent { return (
- {status.getIn(['account', 'display_name']) || status.getIn(['account', 'username'])} - {' '} - {status.get('content')} + {status.getIn(['account', 'display_name']) || status.getIn(['account', 'username'])} + {status.get('content')}
);