From 95e466146d3b92ec212b725b0379a04a2eeeb6de Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 1 Mar 2024 05:55:46 +0900 Subject: [PATCH] fix: show correct reply target user account in reply post header (#2640) --- components/status/StatusReplyingTo.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/status/StatusReplyingTo.vue b/components/status/StatusReplyingTo.vue index 9d521914..9e523afc 100644 --- a/components/status/StatusReplyingTo.vue +++ b/components/status/StatusReplyingTo.vue @@ -10,7 +10,7 @@ const { }>() const isSelf = computed(() => status.inReplyToAccountId === status.account.id) -const account = isSelf ? computed(() => status.account) : useAccountById(status.inReplyToAccountId) +const account = isSelf.value ? computed(() => status.account) : useAccountById(status.inReplyToAccountId)