diff options
author | Ondřej Hruška <ondra@ondrovo.com> | 2017-08-04 22:38:58 +0200 |
---|---|---|
committer | Ondřej Hruška <ondra@ondrovo.com> | 2017-08-04 22:38:58 +0200 |
commit | 7b42d14f456d036e768015c2e12aa93c1bf9226d (patch) | |
tree | 987568008eaed86715147d3366e0a9e6023d9cc2 /app/javascript/glitch | |
parent | f34f33c19e14d03dfcdaa0d6c66460d3c248309f (diff) |
fix bug with data attrib for boost in home TL
Diffstat (limited to 'app/javascript/glitch')
-rw-r--r-- | app/javascript/glitch/components/status/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/glitch/components/status/index.js b/app/javascript/glitch/components/status/index.js index 4849170b0..55e6f1876 100644 --- a/app/javascript/glitch/components/status/index.js +++ b/app/javascript/glitch/components/status/index.js @@ -679,6 +679,7 @@ Users can use those for theming, hiding avatars etc via UserStyle const notifKind = { favourite: 'favourited', reblog: 'boosted', + reblogged_by: 'boosted', }[prepend]; selectorAttribs[`data-${notifKind}-by`] = `@${account.get('acct')}`; |