diff --git a/packages/react-table/src/components/Table/examples/TableDraggable.tsx b/packages/react-table/src/components/Table/examples/TableDraggable.tsx
index 7abcf7b7640..a837cd00970 100644
--- a/packages/react-table/src/components/Table/examples/TableDraggable.tsx
+++ b/packages/react-table/src/components/Table/examples/TableDraggable.tsx
@@ -150,20 +150,23 @@ export const TableDraggable: React.FunctionComponent = () => {
- {rows.map((row, rowIndex) => (
-
- |
- {Object.keys(row).map((key, keyIndex) => (
-
- {row[key]}
- |
- ))}
-
- ))}
+ {rows.map((row, rowIndex) => {
+ const rowCellsToBuild = Object.keys(row).filter((rowCell) => rowCell !== 'id');
+ return (
+
+ |
+ {rowCellsToBuild.map((key, keyIndex) => (
+
+ {row[key]}
+ |
+ ))}
+
+ );
+ })}
);
diff --git a/packages/react-table/src/components/Table/examples/TableSelectable.tsx b/packages/react-table/src/components/Table/examples/TableSelectable.tsx
index 5811846fb93..6c6db8b6203 100644
--- a/packages/react-table/src/components/Table/examples/TableSelectable.tsx
+++ b/packages/react-table/src/components/Table/examples/TableSelectable.tsx
@@ -93,6 +93,7 @@ export const TableSelectable: React.FunctionComponent = () => {
onSelect: (_event, isSelecting) => selectAllRepos(isSelecting),
isSelected: areAllReposSelected
}}
+ aria-label="Row select"
/>
{columnNames.name} |
{columnNames.branches} |
diff --git a/packages/react-table/src/demos/Table.md b/packages/react-table/src/demos/Table.md
index acddd88eec3..9bba7e6e7bb 100644
--- a/packages/react-table/src/demos/Table.md
+++ b/packages/react-table/src/demos/Table.md
@@ -103,7 +103,7 @@ import BellIcon from '@patternfly/react-icons/dist/esm/icons/bell-icon';
### Column management with draggable
-```js isFullscreen file="./examples/TableColumnManagementWithDraggable.tsx"
+```js isDeprecated isFullscreen file="./examples/TableColumnManagementWithDraggable.tsx"
```
diff --git a/packages/react-table/src/demos/examples/TableExpandCollapseAll.tsx b/packages/react-table/src/demos/examples/TableExpandCollapseAll.tsx
index 840bab1c616..987dd21671f 100644
--- a/packages/react-table/src/demos/examples/TableExpandCollapseAll.tsx
+++ b/packages/react-table/src/demos/examples/TableExpandCollapseAll.tsx
@@ -164,7 +164,8 @@ export const TableExpandCollapseAll: React.FunctionComponent = () => {
collapseAllAriaLabel,
onToggle: onCollapseAll
}}
- >
+ aria-label="Row expansion"
+ />
{expandableColumns.map((column) => (
{column} |
))}