chore: more fixes

This commit is contained in:
Sojan 2021-03-06 16:37:46 +05:30
parent bedec53f0f
commit f8f0d36636
5 changed files with 6 additions and 6 deletions

View file

@ -37,7 +37,7 @@
:sender="data.sender"
:is-a-tweet="isATweet"
:is-email="isEmailContentType"
:is-private="data.private"
:is-private="data.is_private_note"
:message-type="data.message_type"
:readable-time="readableTime"
:source-id="data.source_id"
@ -176,7 +176,7 @@ export default {
bubbleClass() {
return {
bubble: this.isBubble,
'is-private': this.data.private,
'is-private': this.data.is_private_note,
'is-image': this.hasImageAttachment,
'is-text': this.hasText,
};