From: Eugen Rochko Date: Wed, 4 Sep 2019 02:14:13 +0000 (+0200) Subject: Fix wrong pluralization in hashtag component in web UI (#11754) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=1a00bd9244ee8555d7401f4f0ee01ec381e96c1c;p=mastodon.git Fix wrong pluralization in hashtag component in web UI (#11754) --- diff --git a/app/javascript/mastodon/components/hashtag.js b/app/javascript/mastodon/components/hashtag.js index 2456eac9e..68b9be72d 100644 --- a/app/javascript/mastodon/components/hashtag.js +++ b/app/javascript/mastodon/components/hashtag.js @@ -12,7 +12,7 @@ const Hashtag = ({ hashtag }) => ( #{hashtag.get('name')} - {shortNumberFormat(hashtag.getIn(['history', 0, 'accounts']) + hashtag.getIn(['history', 1, 'accounts']))} }} /> + {shortNumberFormat(hashtag.getIn(['history', 0, 'accounts']) + hashtag.getIn(['history', 1, 'accounts']))} }} />