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 7b1ef61 commit 9aea71eCopy full SHA for 9aea71e
src/scripts/Table.tsx
@@ -130,7 +130,7 @@ export type TableHeaderColumnProps = {
130
sorted?: boolean;
131
align?: 'left' | 'center' | 'right';
132
onSort?: () => void;
133
-} & ThHTMLAttributes<HTMLTableHeaderCellElement>;
+} & ThHTMLAttributes<HTMLTableCellElement>;
134
135
/**
136
*
@@ -207,7 +207,7 @@ export const TableHeaderColumn: FC<TableHeaderColumnProps> = (props) => {
207
export type TableRowColumnProps = {
208
width?: string | number;
209
truncate?: boolean;
210
-} & TdHTMLAttributes<HTMLTableDataCellElement>;
+} & TdHTMLAttributes<HTMLTableCellElement>;
211
212
213
0 commit comments