Skip to content

Commit

Permalink
fix: restore colors for board icon inside primary bar
Browse files Browse the repository at this point in the history
Refs: SHELL-242 (#494)
  • Loading branch information
beawar authored Aug 30, 2024
1 parent 3148730 commit 8211628
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/shell/shell-primary-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ const ToggleBoardIcon = (): React.JSX.Element | null => {
return isEmpty(boards) ? null : (
<Container width={'3rem'} height={'3rem'}>
<Button
labelColor="primary"
type={'ghost'}
color="primary"
icon={minimized ? 'BoardOpen' : 'BoardCollapse'}
onClick={minimized ? reopenBoards : minimizeBoards}
size="large"
Expand Down

0 comments on commit 8211628

Please sign in to comment.