Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/VuetableFieldCheckboxMixin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ export default {
checkbox.indeterminate = false
return false
}
// count > 0 and count < perPage, set checkbox state to 'indeterminate'
else if (selected.length < this.vuetable.perPage) {
// count > 0 and count < total available, set checkbox state to 'indeterminate'
else if (selected.length < this.vuetable.tableData.length) {
checkbox.indeterminate = true
return true
}
// count == perPage, set checkbox state to 'checked'
// count == total available, set checkbox state to 'checked'
else {
checkbox.indeterminate = false
return true
Expand Down