diff --git a/components/common/CommonPaginator.vue b/components/common/CommonPaginator.vue index 9e40c706..8bf06c2e 100644 --- a/components/common/CommonPaginator.vue +++ b/components/common/CommonPaginator.vue @@ -10,7 +10,6 @@ const { keyProp = 'id', virtualScroller = false, eventType = 'update', - buffer = 10, preprocess, } = defineProps<{ paginator: Paginator @@ -18,10 +17,6 @@ const { virtualScroller?: boolean stream?: Promise 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[] }>()