Skip to content

Commit

Permalink
lib: Table: update hoverable reference to clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
KKoukiou committed May 22, 2023
1 parent 6a08cd7 commit e093f67
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 e093f67

Please sign in to comment.