Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: table rowClick add cursor pointer #766

Merged
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
11 changes: 9 additions & 2 deletions core/src/nusi/wrapped-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,19 @@ interface IProps<T extends object = any> extends TableProps<T> {
columns: Array<ColumnProps<T>>;
}

function WrappedTable<T extends object = any>({ columns, ...props }: IProps<T>) {
function WrappedTable<T extends object = any>({ columns, rowClassName, ...props }: IProps<T>) {
const newColumns = columns?.map(({ ...args }: ColumnProps<T>) => ({
ellipsis: true,
...args,
}));
return <Table scroll={{ x: '100%' }} columns={newColumns} {...props} />;
return (
<Table
scroll={{ x: '100%' }}
columns={newColumns}
rowClassName={props.onRow ? `cursor-pointer ${rowClassName || ''}` : rowClassName}
{...props}
/>
);
}

export default WrappedTable;