Skip to content

Commit 30ac3fb

Browse files
committed
fix(VDataTable): correct alignment of checkboxes
1 parent da9521e commit 30ac3fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vuetify/src/components/VDataTable/VDataTableGroupHeaderRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ export const VDataTableGroupHeaderRow = genericComponent<VDataTableGroupHeaderRo
8282
const indeterminate = isSomeSelected(rows.value) && !modelValue
8383
const selectGroup = (v: boolean) => select(rows.value, v)
8484
return slots['data-table-select']?.({ props: { modelValue, indeterminate, 'onUpdate:modelValue': selectGroup } }) ?? (
85-
<td>
85+
<VDataTableColumn class="v-data-table__td--select-row" noPadding>
8686
<VCheckboxBtn
8787
modelValue={ modelValue }
8888
indeterminate={ indeterminate }
8989
onUpdate:modelValue={ selectGroup }
9090
/>
91-
</td>
91+
</VDataTableColumn>
9292
)
9393
}
9494

0 commit comments

Comments
 (0)