From 72b80d49841d97d0eb304bd77ef9ae5cd4b1a9a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20S=C3=A1nchez?= Date: Wed, 28 Feb 2024 19:02:09 +0100 Subject: [PATCH] fix(ui): missing replying to links (#2637) --- components/status/StatusCard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/status/StatusCard.vue b/components/status/StatusCard.vue index f13f08dd..74e4059e 100644 --- a/components/status/StatusCard.vue +++ b/components/status/StatusCard.vue @@ -63,8 +63,8 @@ const isSelfReply = computed(() => status.value.inReplyToAccountId === status.va const collapseRebloggedBy = computed(() => rebloggedBy.value?.id === status.value.account.id) const isDM = computed(() => status.value.visibility === 'direct') -const showUpperBorder = computed(() => props.newer && !directReply) -const showReplyTo = computed(() => !replyToMain && !directReply) +const showUpperBorder = computed(() => props.newer && !directReply.value) +const showReplyTo = computed(() => !replyToMain.value && !directReply.value) const forceShow = ref(false)