Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class LayerWizardSelect extends Component<Props, State> {
);

return (
<EuiFlexItem key={layerWizard.title}>
<EuiFlexItem key={layerWizard.title} component="li">
{layerWizard.isDisabled && layerWizard.disabledReason ? (
<EuiToolTip
position="top"
Expand All @@ -197,7 +197,7 @@ export class LayerWizardSelect extends Component<Props, State> {
{this._renderCategoryFacets()}

<EuiSpacer size="s" />
<EuiFlexGrid columns={2} gutterSize="m">
<EuiFlexGrid columns={2} gutterSize="m" component="ul">
{wizardCards}
</EuiFlexGrid>
</>
Expand Down