aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-05-06 15:30:36 -0400
committertaehoon <th.dev91@gmail.com>2019-05-06 15:30:36 -0400
commit3adfbc0357742ff69c15ceebb0eb0d3339459536 (patch)
tree85534ec6a0b77e025bfdf0788a756dbfacc0b451 /src
parent1455e1f9d50dc85b4467f410e6119480b6d1ebf1 (diff)
expanded is always false, eliminate it
Diffstat (limited to 'src')
-rw-r--r--src/components/status/status.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index a47b22a7..c873d407 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -30,7 +30,6 @@ const Status = {
data () {
return {
replying: false,
- expanded: false,
unmuted: false,
userExpanded: false,
preview: null,
@@ -160,7 +159,7 @@ const Status = {
if (this.$store.state.config.replyVisibility === 'all') {
return false
}
- if (this.inlineExpanded || this.expanded || this.inConversation || !this.isReply) {
+ if (this.inlineExpanded || this.inConversation || !this.isReply) {
return false
}
if (this.status.user.id === this.$store.state.users.currentUser.id) {