Skip to content

Commit

Permalink
fix: reversed expand/collapse icon in request list, ref #1602
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Bui-Quang <paul.bui-quang@aphp.fr>
  • Loading branch information
pl-buiquang committed Feb 27, 2023
1 parent 193d8ab commit c13b1ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ const ProjectRow: React.FC<ProjectRowProps> = ({ project, requestsList, selected
<ListItemSecondaryAction>
{!open ? (
<IconButton onClick={() => setOpen(!open)}>
<ExpandLessIcon />
<ExpandMoreIcon />
</IconButton>
) : (
<IconButton onClick={() => setOpen(!open)}>
<ExpandMoreIcon />
<ExpandLessIcon />
</IconButton>
)}
</ListItemSecondaryAction>
Expand Down

0 comments on commit c13b1ba

Please sign in to comment.