diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-08-28 11:05:17 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-08-28 19:52:47 +0200 |
commit | 4a9e3f80e837796daf3661bd4fbcd8929c6841f9 (patch) | |
tree | 24b109456b1ddad7f35ce7ca9d3fc5e83bd8949f /app/javascript/flavours/glitch | |
parent | 3b09597556094440f716fc43b602febf191fbe85 (diff) |
[Glitch] Add CSS class to replies
Port 2bbec9f4dab1441391983ce920b6a0094f0e0348 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch')
-rw-r--r-- | app/javascript/flavours/glitch/components/status.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/components/status.js b/app/javascript/flavours/glitch/components/status.js index 201208c5d..1ac5a4b3e 100644 --- a/app/javascript/flavours/glitch/components/status.js +++ b/app/javascript/flavours/glitch/components/status.js @@ -475,6 +475,7 @@ export default class Status extends ImmutablePureComponent { const computedClass = classNames('status', `status-${status.get('visibility')}`, { collapsed: isCollapsed, 'has-background': isCollapsed && background, + 'status__wrapper-reply': !!status.get('in_reply_to_id'), muted, }, 'focusable'); |