Skip to content

Commit

Permalink
fix(DataTable): don't set unique name for each radio input
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Sep 12, 2023
1 parent 0a2c591 commit 6edf30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/DataTable/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ class DataTable<RowType, ColTypes extends any[]> extends React.Component<
onClick,
]),
id: `${this.getTablePrefix()}__select-row-${row.id}`,
name: `select-row-${row.id}`,
name: `select-row`,
ariaLabel: t(translationKey),
disabled: row.disabled,
radio: this.props.radio || null,
Expand Down

0 comments on commit 6edf30d

Please sign in to comment.