fix: paginator watch (#2613)
This commit is contained in:
parent
3769176eaa
commit
1fefb6e5b6
|
@ -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