diff options
| author | dave <starpumadev@gmail.com> | 2019-03-11 10:52:28 -0400 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-03-11 10:52:28 -0400 |
| commit | 4f455eefe5af2914d7dece40e027ed35ec8a21b3 (patch) | |
| tree | 4a69d4c6c5b65ef650ee951a70a61a1a80da6562 /src/components/conversation/conversation.vue | |
| parent | 09736691ea79e66c9e41d6f723384769088eb2d0 (diff) | |
#433: do not remove the reply dialog
Diffstat (limited to 'src/components/conversation/conversation.vue')
| -rw-r--r-- | src/components/conversation/conversation.vue | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index 5528fef6..42d009c9 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -10,14 +10,19 @@ <div class="timeline"> <status v-for="status in conversation" - @goto="setHighlight" :key="status.id" - :inlineExpanded="collapsable" :statusoid="status" - :expandable='false' :focused="focused(status.id)" + @goto="setHighlight" + @toggleReplying="toggleReplying" + :replying="replying && status.id === statusId" + :key="status.id" + :inlineExpanded="collapsable" + :statusoid="status" + :expandable='false' + :focused="focused(status.id)" :inConversation='true' :highlight="highlight" :replies="getReplies(status.id)" - class="status-fadein"> - </status> + class="status-fadein" + /> </div> </div> </div> |
