aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2023-10-13 13:10:57 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2023-10-13 13:10:57 +0000
commit4c11ac9a27696a7fe57eeb486257d8f7c1295548 (patch)
tree943ab12a13179ff6ef7ac956647cd13615546231 /src
parent3c38a7952652fd8d584473cd8ee85bd499b43275 (diff)
parent8f87a1506964e1b6dafc662f896e4332cd50eee9 (diff)
Merge branch 'quotes-hide-card' into 'develop'
oops See merge request pleroma/pleroma-fe!1859
Diffstat (limited to 'src')
-rw-r--r--src/components/status_content/status_content.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status_content/status_content.js b/src/components/status_content/status_content.js
index c01b80af..8d8a91dc 100644
--- a/src/components/status_content/status_content.js
+++ b/src/components/status_content/status_content.js
@@ -75,7 +75,7 @@ const StatusContent = {
...controlledOrUncontrolledGetters(['showingTall', 'expandingSubject', 'showingLongSubject']),
statusCard () {
if (!this.status.card) return null
- return this.status.card.url === this.status.quote_url ? null : status.card
+ return this.status.card.url === this.status.quote_url ? null : this.status.card
},
hideAttachments () {
return (this.mergedConfig.hideAttachments && !this.inConversation) ||