Merge remote-tracking branch 'origin/develop' into migrate/vuex-to-pinia
This commit is contained in:
commit
58e18d48df
489 changed files with 31167 additions and 9871 deletions
|
|
@ -74,6 +74,10 @@ const StatusContent = {
|
|||
},
|
||||
computed: {
|
||||
...controlledOrUncontrolledGetters(['showingTall', 'expandingSubject', 'showingLongSubject']),
|
||||
statusCard () {
|
||||
if (!this.status.card) return null
|
||||
return this.status.card.url === this.status.quote_url ? null : this.status.card
|
||||
},
|
||||
hideAttachments () {
|
||||
return (this.mergedConfig.hideAttachments && !this.inConversation) ||
|
||||
(this.mergedConfig.hideAttachmentsInConv && this.inConversation)
|
||||
|
|
@ -87,6 +91,9 @@ const StatusContent = {
|
|||
}
|
||||
return true
|
||||
},
|
||||
localCollapseSubjectDefault () {
|
||||
return this.mergedConfig.collapseMessageWithSubject
|
||||
},
|
||||
attachmentSize () {
|
||||
if (this.compact) {
|
||||
return 'small'
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
/>
|
||||
|
||||
<div
|
||||
v-if="status.card && !noHeading && !compact"
|
||||
v-if="statusCard && !noHeading && !compact"
|
||||
class="link-preview media-body"
|
||||
>
|
||||
<link-preview
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue