Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,8 @@ export function LensEditConfigurationFlyout({
}
.euiAccordion-isOpen {
.euiAccordion__childWrapper {
block-size: auto !important; // Override euiAccordion__childWrapper blockSize
// Override euiAccordion__childWrapper blockSize only when ES|QL mode is enabled
block-size: auto ${textBasedMode ? '!important' : ''};
flex: 1;
}
}
Expand Down Expand Up @@ -394,9 +395,8 @@ export function LensEditConfigurationFlyout({
<EuiTitle
size="xxs"
css={css`
padding: 2px;
}
`}
padding: 2px;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've noticed a lone closing bracket here so I've removed it

`}
>
<h5>
{i18n.translate('xpack.lens.config.visualizationConfigurationLabel', {
Expand Down