Skip to content

Commit

Permalink
chore: fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Sep 19, 2023
1 parent ac90099 commit cf27fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/labs/VDataTable/composables/select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export function provideSelection (
allItems: allSelectable.value,
currentPage: currentPageSelectable.value,
})
return items.length && isSelected(items)
return !!items.length && isSelected(items)
})

const data = {
Expand Down

0 comments on commit cf27fb1

Please sign in to comment.