Skip to content

Commit

Permalink
[Cases] Fix user action content pushing the sidebar beyond the screen…
Browse files Browse the repository at this point in the history
… limits (elastic#123050)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
academo and kibanamachine authored Jan 17, 2022
1 parent 605d0d5 commit dcc4454
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const MarkdownRendererComponent: React.FC<Props> = ({ children, disableLinks })
<EuiMarkdownFormat
parsingPluginList={parsingPlugins}
processingPluginList={processingPluginList}
grow={false}
>
{children}
</EuiMarkdownFormat>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const UserActionMarkdownComponent = forwardRef<
/>
</Form>
) : (
<ContentWrapper data-test-subj="user-action-markdown">
<ContentWrapper className={'eui-xScroll'} data-test-subj="user-action-markdown">
<MarkdownRenderer>{content}</MarkdownRenderer>
</ContentWrapper>
);
Expand Down

0 comments on commit dcc4454

Please sign in to comment.