Skip to content

Commit

Permalink
fix: margin on ActionItem group undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Mar 30, 2020
1 parent 50e7fef commit ef3a2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/components/src/ActionBar/ActionBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const ActionBar: FunctionComponent<ActionBarProps> = ({
key={`${typeof title === 'string' ? title : 'item'}_${index}`}
sx={{
mt: 1,
ml: nextGroup != group ? 2 : 0,
ml: nextGroup != group || group === undefined ? 2 : 0,
fontSize: 1,
a: ActionColors({ theme, disabled }),
button: ActionColors({ theme, disabled }),
Expand Down

0 comments on commit ef3a2f3

Please sign in to comment.