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.js | |
| parent | 09736691ea79e66c9e41d6f723384769088eb2d0 (diff) | |
#433: do not remove the reply dialog
Diffstat (limited to 'src/components/conversation/conversation.js')
| -rw-r--r-- | src/components/conversation/conversation.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/conversation/conversation.js b/src/components/conversation/conversation.js index 48b8aaaa..95e484cd 100644 --- a/src/components/conversation/conversation.js +++ b/src/components/conversation/conversation.js @@ -30,7 +30,8 @@ const conversation = { }, props: [ 'statusoid', - 'collapsable' + 'collapsable', + 'replying' ], computed: { status () { @@ -102,6 +103,9 @@ const conversation = { }, setHighlight (id) { this.highlight = id + }, + toggleReplying () { + this.$emit('toggleReplying') } } } |
