Skip to content

Commit

Permalink
Merge pull request #31 from AntaresSimulatorTeam/fix/ANT-2615_study_t…
Browse files Browse the repository at this point in the history
…able_display_chekbox_in_default_state

fix: ANT-2615 - Radio button display should be handled by opacity
  • Loading branch information
vargastat authored Jan 9, 2025
2 parents f5fef66 + d0b048a commit d168e3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/pegase/home/components/StudyTableHeaders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const getStudyTableHeaders = () => {
id: 'radioColumn',
header: () => <></>,
cell: ({ row }) => (
<div className={`${row.getIsSelected() ? 'block' : 'hidden group-hover:block'}`}>
<div className={`${row.getIsSelected() ? 'opacity-100' : 'opacity-0 group-hover:opacity-100'}`}>
<RdsRadioButton
value={row.original.id.toString()}
label=""
Expand Down

0 comments on commit d168e3c

Please sign in to comment.