diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-26 01:54:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-26 01:54:58 +0200 |
commit | a2e3401e48a211f8feba85fb29435ee9100077fc (patch) | |
tree | 9d755ced0457dd32ecd9f3d48dc3783d9542ff3a /app/javascript | |
parent | 7fee968e9fb75d0f6d381009d5c4403c5a027174 (diff) |
Fix conversations not being marked read on click (#9103)
Fix #9096
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/features/direct_timeline/components/conversation.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/direct_timeline/components/conversation.js b/app/javascript/mastodon/features/direct_timeline/components/conversation.js index 7277b7f0f..ffcd6d281 100644 --- a/app/javascript/mastodon/features/direct_timeline/components/conversation.js +++ b/app/javascript/mastodon/features/direct_timeline/components/conversation.js @@ -56,6 +56,7 @@ export default class Conversation extends ImmutablePureComponent { otherAccounts={accounts} onMoveUp={this.handleHotkeyMoveUp} onMoveDown={this.handleHotkeyMoveDown} + onClick={this.handleClick} /> ); } |