mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-21 17:05:22 +03:00
fix: paginator watch (#2613)
This commit is contained in:
parent
3769176eaa
commit
1fefb6e5b6
1 changed files with 3 additions and 3 deletions
|
@ -29,11 +29,11 @@ export function usePaginator<T, P, U = T>(
|
||||||
prevItems.value = []
|
prevItems.value = []
|
||||||
}
|
}
|
||||||
|
|
||||||
watch(() => stream, async (stream) => {
|
watch(stream, async (stream) => {
|
||||||
if (!stream.value)
|
if (!stream)
|
||||||
return
|
return
|
||||||
|
|
||||||
for await (const entry of stream.value) {
|
for await (const entry of stream) {
|
||||||
if (entry.event === 'update') {
|
if (entry.event === 'update') {
|
||||||
const status = entry.payload
|
const status = entry.payload
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue