Skip to content

Commit

Permalink
[ML] Fix import modal flex items overflowing in IE11 (elastic#27529)
Browse files Browse the repository at this point in the history
* Fix import modal for IE11

* update tests
  • Loading branch information
alvarezmelissa87 committed Dec 21, 2018
1 parent ab30a95 commit 939fb30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ exports[`ImportModal Renders import modal 1`] = `
>
<EuiFlexItem
component="div"
grow={true}
grow={false}
>
<EuiModalHeaderTitle>
Import events
</EuiModalHeaderTitle>
</EuiFlexItem>
<EuiFlexItem
component="div"
grow={true}
grow={false}
>
<p>
Import events from an ICS file.
Expand All @@ -46,7 +46,7 @@ exports[`ImportModal Renders import modal 1`] = `
>
<EuiFlexItem
component="div"
grow={true}
grow={false}
>
<EuiFilePicker
compressed={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,20 +141,20 @@ export class ImportModal extends Component {
direction="column"
gutterSize="none"
>
<EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiModalHeaderTitle >
Import events
</EuiModalHeaderTitle>
</EuiFlexItem>
<EuiFlexItem>
<EuiFlexItem grow={false}>
<p>Import events from an ICS file.</p>
</EuiFlexItem>
</EuiFlexGroup>
</EuiModalHeader>

<EuiModalBody>
<EuiFlexGroup direction="column">
<EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiFilePicker
compressed
initialPromptText="Select or drag and drop a file"
Expand Down

0 comments on commit 939fb30

Please sign in to comment.