diff options
| author | lambadalambda <gitgud@rogerbraun.net> | 2017-03-07 06:06:43 -0500 |
|---|---|---|
| committer | lambadalambda <gitgud@rogerbraun.net> | 2017-03-07 06:06:43 -0500 |
| commit | aa0d207c945d61678801910719b0b013df75a78a (patch) | |
| tree | d69b051de73c2f078b8c41cb5073bf1f5c99d141 /src/components/conversation/conversation.js | |
| parent | e64a5beb35ca7c356054b68c861cc44ccac42bc5 (diff) | |
| parent | 9d56721533d46cbd88db8e64edb8d6fddf61298e (diff) | |
Merge branch 'fix/highlight-expanded-retweets' into 'develop'
Highlight original notice when expanding retweets
See merge request !43
Diffstat (limited to 'src/components/conversation/conversation.js')
| -rw-r--r-- | src/components/conversation/conversation.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index a598b521..769893d3 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -49,7 +49,11 @@ const conversation = { } }, focused: function (id) { - return (id === this.statusoid.id) + if (!!this.statusoid.retweeted_status) { + return (id === this.statusoid.retweeted_status.id) + } else { + return (id === this.statusoid.id) + } } } } |
