#433: persistency of status form

This commit is contained in:
dave 2019-03-11 16:24:37 -04:00
parent 19015a4ae7
commit 63d7c7bd80
7 changed files with 60 additions and 82 deletions

View file

@ -25,11 +25,11 @@ const Status = {
'replies',
'isPreview',
'noHeading',
'inlineExpanded',
'replying'
'inlineExpanded'
],
data () {
return {
replying: false,
expanded: false,
unmuted: false,
userExpanded: false,
@ -307,10 +307,9 @@ const Status = {
}
},
toggleReplying () {
this.$emit('toggleReplying')
this.replying = !this.replying
},
gotoOriginal (id) {
// only handled by conversation, not status_or_conversation
if (this.inConversation) {
this.$emit('goto', id)
}