mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[ML] Fix switches positioning on the Transform and DFA wizards (#96535)
* [ML] fix edit runtime mapping switch positioning * [ML] fix transform wizard switches
This commit is contained in:
parent
7984745a9d
commit
d9ef5c28d5
3 changed files with 3 additions and 3 deletions
|
@ -131,7 +131,7 @@ export const RuntimeMappings: FC<Props> = ({ actions, state }) => {
|
|||
defaultMessage: 'Runtime mappings',
|
||||
})}
|
||||
>
|
||||
<EuiFlexGroup alignItems="center" justifyContent="spaceBetween">
|
||||
<EuiFlexGroup alignItems="baseline" justifyContent="spaceBetween">
|
||||
<EuiFlexItem grow={true}>
|
||||
{isPopulatedObject(runtimeMappings) ? (
|
||||
<EuiText size="s" grow={false}>
|
||||
|
|
|
@ -91,7 +91,7 @@ export const AdvancedRuntimeMappingsSettings: FC<StepDefineFormHook> = (props) =
|
|||
defaultMessage: 'Runtime mappings',
|
||||
})}
|
||||
>
|
||||
<EuiFlexGroup alignItems="center" justifyContent="spaceBetween">
|
||||
<EuiFlexGroup alignItems="baseline" justifyContent="spaceBetween">
|
||||
<EuiFlexItem grow={true}>
|
||||
{runtimeMappings !== undefined && Object.keys(runtimeMappings).length > 0 ? (
|
||||
<FormattedMessage
|
||||
|
|
|
@ -227,7 +227,7 @@ export const StepDefineForm: FC<StepDefineFormProps> = React.memo((props) => {
|
|||
}
|
||||
>
|
||||
<>
|
||||
<EuiFlexGroup alignItems="center" justifyContent="spaceBetween">
|
||||
<EuiFlexGroup alignItems="flexStart" justifyContent="spaceBetween">
|
||||
<EuiFlexItem>
|
||||
{/* Flex Column #1: Search Bar / Advanced Search Editor */}
|
||||
{searchItems.savedSearch === undefined && (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue