fix(paginator): empty when count equals button

This commit is contained in:
三咲智子 2023-01-10 01:22:20 +08:00
parent 8d77f9e9fb
commit 56ab163369
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -67,7 +67,7 @@ export function usePaginator<T, P, U = T>(
if (!result.done && result.value.length) {
const preprocessedItems = preprocess([...nextItems.value, ...result.value] as (U | T)[])
const itemsToShowCount
= preprocessedItems.length < buffer
= preprocessedItems.length <= buffer
? preprocessedItems.length
: preprocessedItems.length - buffer
;(nextItems.value as U[]) = preprocessedItems.slice(itemsToShowCount)