Skip to content

Commit

Permalink
[Graph] Fix responsive styles of field manager (elastic#140948)
Browse files Browse the repository at this point in the history
(cherry picked from commit 7a1934f)
  • Loading branch information
jughosta committed Sep 19, 2022
1 parent 292980d commit a5e4beb
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ export function FieldManagerComponent(props: {
store?: GraphStore; // only for testing purpose
}) {
return (
<EuiFlexGroup gutterSize="s" className="gphFieldManager" alignItems="center">
<EuiFlexGroup
className="gphFieldManager"
gutterSize="s"
alignItems="center"
wrap={true}
responsive={false}
>
{props.selectedFields.map((field) => (
<EuiFlexItem key={field.name} grow={false}>
<FieldEditor {...props} field={field} />
Expand Down

0 comments on commit a5e4beb

Please sign in to comment.