Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mbondyra committed Mar 22, 2022
1 parent 0c126c4 commit fd789e4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.

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 @@ -69,7 +69,7 @@ export const AnnotationsPanel = (
return (
<>
<DimensionEditorSection>
<EuiTitle size="xs" className="lnsXyConfigHeading">
<EuiTitle size="xxs" className="lnsXyConfigHeading">
<h3>
{i18n.translate('xpack.lens.xyChart.placement', {
defaultMessage: 'Placement',
Expand All @@ -94,7 +94,7 @@ export const AnnotationsPanel = (
/>
</DimensionEditorSection>
<DimensionEditorSection hasBorder>
<EuiTitle size="xs" className="lnsXyConfigHeading">
<EuiTitle size="xxs" className="lnsXyConfigHeading">
<h3>
{i18n.translate('xpack.lens.xyChart.appearance', {
defaultMessage: 'Appearance',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,16 @@ export const LineStyleSettings = ({
})}
>
<EuiFlexGroup gutterSize="s" justifyContent="spaceBetween" responsive={false}>
<EuiFlexItem grow={true}>
<EuiFlexItem>
<LineThicknessSlider
value={currentConfig?.lineWidth || 1}
onChange={(value) => {
setConfig({ lineWidth: value });
}}
/>
</EuiFlexItem>
<EuiFlexItem grow={true}>
<EuiFlexItem grow={false}>
<EuiButtonGroup
isFullWidth
legend={i18n.translate('xpack.lens.xyChart.lineStyle.label', {
defaultMessage: 'Line',
})}
Expand Down

0 comments on commit fd789e4

Please sign in to comment.