mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
chore: remove unused buffer prop
This commit is contained in:
parent
9721bbf12b
commit
0651c50a43
1 changed files with 0 additions and 5 deletions
|
@ -10,7 +10,6 @@ const {
|
|||
keyProp = 'id',
|
||||
virtualScroller = false,
|
||||
eventType = 'update',
|
||||
buffer = 10,
|
||||
preprocess,
|
||||
} = defineProps<{
|
||||
paginator: Paginator<T[], O>
|
||||
|
@ -18,10 +17,6 @@ const {
|
|||
virtualScroller?: boolean
|
||||
stream?: Promise<WsEvents>
|
||||
eventType?: 'notification' | 'update'
|
||||
// When preprocess is used, buffer is the number of items that will be hidden
|
||||
// until the next pagination to avoid border effect between pages when reordering
|
||||
// and grouping items
|
||||
buffer?: number
|
||||
preprocess?: (items: T[]) => U[]
|
||||
}>()
|
||||
|
||||
|
|
Loading…
Reference in a new issue