mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-12 20:09:59 +00:00
fix(ui): account mentions not being fetched when visible (#2624)
This commit is contained in:
parent
6f20ce5bba
commit
fc5d248094
1 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ const account = ref<mastodon.v1.Account | null | undefined>(props.account)
|
||||||
useIntersectionObserver(
|
useIntersectionObserver(
|
||||||
hoverCard,
|
hoverCard,
|
||||||
([{ intersectionRatio }]) => {
|
([{ intersectionRatio }]) => {
|
||||||
targetIsVisible.value = intersectionRatio <= 0.75
|
targetIsVisible.value = intersectionRatio > 0.1
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
watch(
|
watch(
|
||||||
|
@ -32,7 +32,7 @@ watch(
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!newVisible)
|
if (!newVisible || process.test)
|
||||||
return
|
return
|
||||||
|
|
||||||
if (newHandle) {
|
if (newHandle) {
|
||||||
|
|
Loading…
Reference in a new issue