aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordave <starpumadev@gmail.com>2019-03-25 15:10:45 -0400
committerdave <starpumadev@gmail.com>2019-03-25 15:10:45 -0400
commitc5ec4829a7a18b20a1525998ba27cc7af5a3da55 (patch)
treebbc1157bc4472e197b558aa3e3e3fb6058d1f2cd /src
parent73dfb00be2037517ff5c62a3079c95f5f5b93563 (diff)
#433 - consider page on focused
Diffstat (limited to 'src')
-rw-r--r--src/components/conversation/conversation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js
index f8887557..94709fd8 100644
--- a/src/components/conversation/conversation.js
+++ b/src/components/conversation/conversation.js
@@ -139,7 +139,7 @@ const conversation = {
return this.replies[id] || []
},
focused (id) {
- return this.expanded && id === this.statusId
+ return (this.expanded || this.isPage) && id === this.statusId
},
setHighlight (id) {
this.highlight = id