1
0
mirror of https://akkoma.dev/lamp/akkoma-fe.git synced 2025-04-07 00:04:05 -04:00

Merge branch 'fix/highlight-expanded-retweets' into 'develop'

Highlight original notice when expanding retweets

See merge request 
This commit is contained in:
lambadalambda 2017-03-07 06:06:43 -05:00
commit aa0d207c94
2 changed files with 6 additions and 2 deletions
src/components
conversation
status

@ -49,7 +49,11 @@ const conversation = {
}
},
focused: function (id) {
return (id === this.statusoid.id)
if (!!this.statusoid.retweeted_status) {
return (id === this.statusoid.retweeted_status.id)
} else {
return (id === this.statusoid.id)
}
}
}
}

@ -32,7 +32,7 @@ const Status = {
return !!this.$store.state.users.currentUser
},
muted () { return !this.unmuted && this.status.user.muted },
isReply () { return !!this.statusoid.in_reply_to_status_id }
isReply () { return !!this.status.in_reply_to_status_id }
},
components: {
Attachment,