diff options
| author | dave <starpumadev@gmail.com> | 2019-03-25 14:55:58 -0400 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-03-25 14:55:58 -0400 |
| commit | 1a68a9db364de9511f89d39f12d329c92a532f04 (patch) | |
| tree | 728ea4994df37f37ebc0328988a726bff66ab794 /src | |
| parent | 6143b1ce0febe0451305918d1c735c4c23071701 (diff) | |
#433 - Fix conversation page highlight, fetch conversation on converation page
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/conversation/conversation.js | 7 | ||||
| -rw-r--r-- | src/components/conversation/conversation.vue | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index c57c7e06..f8887557 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -36,6 +36,11 @@ const conversation = { 'collapsable', 'isPage' ], + created () { + if (this.isPage) { + this.fetchConversation() + } + }, computed: { status () { return this.statusoid @@ -140,7 +145,7 @@ const conversation = { this.highlight = id }, getHighlight () { - return this.expanded ? this.highlight : null + return this.isExpanded ? this.highlight : null }, toggleExpanded () { this.expanded = !this.expanded diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index 3778cc15..043f3fb3 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -17,7 +17,7 @@ :statusoid="status" :expandable='!expanded' :focused="focused(status.id)" - :inConversation="expanded" + :inConversation="isExpanded" :highlight="getHighlight()" :replies="getReplies(status.id)" class="status-fadein" |
