Skip to content

Commit

Permalink
Fix type for data grid attribute (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval authored Oct 26, 2023
1 parent 3ae9bac commit 977cca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-components/src/data-grid/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ DataGridRow.displayName = 'Jupyter.DataGridRow';
export const DataGrid: React.DetailedHTMLFactory<
React.HTMLAttributes<HTMLElement> & {
'generate-header'?: 'none' | 'default' | 'sticky';
'grid-template-columns'?: 'string';
'grid-template-columns'?: string;
},
HTMLElement
> = wrap(jpDataGrid()) as any;
Expand Down

0 comments on commit 977cca1

Please sign in to comment.