From e093f6785343dca304ac58c08de595fb7202bae0 Mon Sep 17 00:00:00 2001 From: Katerina Koukiou Date: Mon, 22 May 2023 16:01:23 +0200 Subject: [PATCH] lib: Table: update hoverable reference to clickable https://github.com/patternfly/patternfly-react/pull/9083 --- pkg/lib/cockpit-components-table.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/lib/cockpit-components-table.jsx b/pkg/lib/cockpit-components-table.jsx index 9cf3d14f43a4..36cd15b1056d 100644 --- a/pkg/lib/cockpit-components-table.jsx +++ b/pkg/lib/cockpit-components-table.jsx @@ -188,7 +188,7 @@ export const ListingTable = ({ const rowsComponents = (isSortable ? (sortMethod ? sortMethod(rows, activeSortDirection, activeSortIndex) : sortRows()) : rows).map((row, rowIndex) => { const rowProps = row.props || {}; if (onRowClick) { - rowProps.isHoverable = true; + rowProps.isClickable = true; rowProps.onRowClick = (event) => onRowClick(event, row); }