about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-10-26 01:54:58 +0200
committerGitHub <noreply@github.com>2018-10-26 01:54:58 +0200
commita2e3401e48a211f8feba85fb29435ee9100077fc (patch)
tree9d755ced0457dd32ecd9f3d48dc3783d9542ff3a
parent7fee968e9fb75d0f6d381009d5c4403c5a027174 (diff)
Fix conversations not being marked read on click (#9103)
Fix #9096
-rw-r--r--app/javascript/mastodon/features/direct_timeline/components/conversation.js1
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}
       />
     );
   }