mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 01:49:58 +00:00
fix(ui): wrong reply to account (#2649)
This commit is contained in:
parent
873c62e9ef
commit
62f70250d5
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ useIntersectionObserver(
|
||||||
watch(
|
watch(
|
||||||
() => [props.status, targetIsVisible.value] satisfies WatcherType,
|
() => [props.status, targetIsVisible.value] satisfies WatcherType,
|
||||||
([newStatus, newVisible]) => {
|
([newStatus, newVisible]) => {
|
||||||
if (newStatus.account) {
|
if (newStatus.account && newStatus.inReplyToAccountId === newStatus.account.id) {
|
||||||
account.value = newStatus.account
|
account.value = newStatus.account
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue