Skip to content

Commit

Permalink
lib: update isHoverable to isClickable
Browse files Browse the repository at this point in the history
This was renamed in PF5 in c03a01918b2d947d297e.
  • Loading branch information
jelly committed Jul 6, 2023
1 parent f0782db commit c55b441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lib/cockpit-components-table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit c55b441

Please sign in to comment.