: do not remove the reply dialog

This commit is contained in:
dave 2019-03-11 10:52:28 -04:00
parent 09736691ea
commit 4f455eefe5
5 changed files with 41 additions and 12 deletions
src/components/conversation

View file

@ -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')
}
}
}