Skip to content

Commit

Permalink
fix: move actions above block
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Mar 6, 2020
1 parent 89645a8 commit a9ab157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/block-components/src/BlockContainer/BlockContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const BlockContainer: FC<BlockContainerProps> = ({
}) => (
<SpacedBlockContainer>
{title && <Subtitle>{title}</Subtitle>}
<FramedBlockContainer>{children}</FramedBlockContainer>
{actions && <ActionBar actionItems={actions} />}
<FramedBlockContainer>{children}</FramedBlockContainer>
</SpacedBlockContainer>
);

0 comments on commit a9ab157

Please sign in to comment.