We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1636f63 commit 402257dCopy full SHA for 402257d
packages/vuetify/src/components/VDataTable/VDataTableGroupHeaderRow.tsx
@@ -82,13 +82,13 @@ export const VDataTableGroupHeaderRow = genericComponent<VDataTableGroupHeaderRo
82
const indeterminate = isSomeSelected(rows.value) && !modelValue
83
const selectGroup = (v: boolean) => select(rows.value, v)
84
return slots['data-table-select']?.({ props: { modelValue, indeterminate, 'onUpdate:modelValue': selectGroup } }) ?? (
85
- <td>
+ <VDataTableColumn class="v-data-table__td--select-row" noPadding>
86
<VCheckboxBtn
87
modelValue={ modelValue }
88
indeterminate={ indeterminate }
89
onUpdate:modelValue={ selectGroup }
90
/>
91
- </td>
+ </VDataTableColumn>
92
)
93
}
94
0 commit comments