diff options
| author | dave <starpumadev@gmail.com> | 2019-03-25 15:10:45 -0400 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-03-25 15:10:45 -0400 |
| commit | c5ec4829a7a18b20a1525998ba27cc7af5a3da55 (patch) | |
| tree | bbc1157bc4472e197b558aa3e3e3fb6058d1f2cd /src/components/conversation/conversation.js | |
| parent | 73dfb00be2037517ff5c62a3079c95f5f5b93563 (diff) | |
#433 - consider page on focused
Diffstat (limited to 'src/components/conversation/conversation.js')
| -rw-r--r-- | src/components/conversation/conversation.js | 2 |
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 |
