aboutsummaryrefslogtreecommitdiff
path: root/src/components/status/status.js
diff options
context:
space:
mode:
authordave <starpumadev@gmail.com>2019-03-11 16:24:37 -0400
committerdave <starpumadev@gmail.com>2019-03-11 16:24:37 -0400
commit63d7c7bd80cf8028cdefee99c1cb75614385f96b (patch)
tree673807d768d8c60a36af8a8910086e5095143a58 /src/components/status/status.js
parent19015a4ae7cfa723c88e61dcde0e41b2e0a90ba9 (diff)
#433: persistency of status form
Diffstat (limited to 'src/components/status/status.js')
-rw-r--r--src/components/status/status.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index 20ca86a6..8e489704 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -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)
}