diff --git a/ui/components/data-tables/responsive/example.jsx b/ui/components/data-tables/responsive/example.jsx index 2b2d6cef17..7da0d95744 100644 --- a/ui/components/data-tables/responsive/example.jsx +++ b/ui/components/data-tables/responsive/example.jsx @@ -11,6 +11,8 @@ import classNames from 'classnames'; // Partial(s) /// //////////////////////////////////////// +const checkboxRadioGroupHeaderId = 'check-group-header'; + let Table = props => (
-
+
Choose a row to select
|
@@ -130,7 +132,7 @@ let RowData = props => (
labelId={`check-button-label-0${props.index}`}
id={`checkbox-0${props.index}`}
label={`Select item ${props.index}`}
- groupId="check-group-header"
+ groupId={checkboxRadioGroupHeaderId}
checked={props.checked}
/>
---|