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); }