Skip to content

Commit

Permalink
fix: selected in lists
Browse files Browse the repository at this point in the history
  • Loading branch information
OliwiaGowor committed Dec 16, 2024
1 parent 5b7fd61 commit e79c156
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/shared/components/GenericList/components.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ export const HeaderRenderer = ({
<TableColumn
slot={`${slot}-${index}`}
key={typeof h === 'object' ? index : h}
popinDisplay="Block"
demandPopin={h === 'Popin' ? true : false}
minWidth={
Array.isArray(noHideFields) && noHideFields.length !== 0
? noHideFields.find(field => field === h)
Expand Down Expand Up @@ -135,7 +137,7 @@ const DefaultRowRenderer = ({
);

return (
<TableRow type="Active">
<TableRow type="Active" selected={isSelected}>
{cells}
{!!actions.length && actionsCell}
{displayArrow && (
Expand Down

0 comments on commit e79c156

Please sign in to comment.