Browse Source

fix too-many-attachments in notifications column

Henry Jameson 3 năm trước cách đây
mục cha
commit
56de3d2f52
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      src/components/status_content/status_content.js

+ 3 - 3
src/components/status_content/status_content.js

@@ -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'
     },