fix too-many-attachments in notifications column

This commit is contained in:
Henry Jameson 2022-01-24 19:53:17 +02:00
parent c551e3e697
commit 56de3d2f52

View file

@ -48,12 +48,12 @@ const StatusContent = {
return true
},
attachmentSize () {
if ((this.mergedConfig.hideAttachments && !this.inConversation) ||
if (this.compact) {
return 'small'
} else if ((this.mergedConfig.hideAttachments && !this.inConversation) ||
(this.mergedConfig.hideAttachmentsInConv && this.inConversation) ||
(this.status.attachments.length > this.maxThumbnails)) {
return 'hide'
} else if (this.compact) {
return 'small'
}
return 'normal'
},