Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashornych committed Nov 4, 2023
1 parent a212ca2 commit afdf241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/base/VListItemLazyIterator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const pageOfItems = computed<any[]>(() => {
<template v-for="(item, index) in pageOfItems" :key="index">
<slot name="item" :item="item" :index="index" />
</template>
<VListItem v-if="lastPage > 1 && page < lastPage>">
<VListItem v-if="lastPage > 1 && page < lastPage">
<VBtn
variant="outlined"
@click="emit('update:page', page + 1)"
Expand Down

0 comments on commit afdf241

Please sign in to comment.