mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 01:49:58 +00:00
fix: show correct reply target user account in reply post header (#2640)
This commit is contained in:
parent
efec212a9f
commit
95e466146d
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ const {
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const isSelf = computed(() => status.inReplyToAccountId === status.account.id)
|
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>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|
Loading…
Reference in a new issue