From: Thibaut Girka Date: Tue, 18 Dec 2018 17:06:55 +0000 (+0100) Subject: [Glitch] Fix that translation is not applied to "joining hashtags" X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=6166751f9ee0d14f3662e64cb660ccb4f34f906c;p=mastodon.git [Glitch] Fix that translation is not applied to "joining hashtags" Port bfec030a4e3be37e4986d7ec5cb1bda968ba549a to glitch-soc --- diff --git a/app/javascript/flavours/glitch/features/hashtag_timeline/index.js b/app/javascript/flavours/glitch/features/hashtag_timeline/index.js index 49893dde8..d04e9cafa 100644 --- a/app/javascript/flavours/glitch/features/hashtag_timeline/index.js +++ b/app/javascript/flavours/glitch/features/hashtag_timeline/index.js @@ -41,13 +41,13 @@ export default class HashtagTimeline extends React.PureComponent { title = () => { let title = [this.props.params.id]; if (this.additionalFor('any')) { - title.push(); + title.push(' ', ); } if (this.additionalFor('all')) { - title.push(); + title.push(' ', ); } if (this.additionalFor('none')) { - title.push(); + title.push(' ', ); } return title; }