expanded is always false, eliminate it

このコミットが含まれているのは:
taehoon 2019-05-06 15:30:36 -04:00
コミット 3adfbc0357
1個のファイルの変更1行の追加2行の削除

ファイルの表示

@ -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) {