Skip to content

Commit

Permalink
fix: show correct reply target user account in reply post header (elk…
Browse files Browse the repository at this point in the history
  • Loading branch information
shuuji3 authored Feb 29, 2024
1 parent efec212 commit 95e4661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/status/StatusReplyingTo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)
</script>

<template>
Expand Down

0 comments on commit 95e4661

Please sign in to comment.