mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
* Removed flex group because it's causing alignment issues on IE. Verified and tested on all 3 browsers. * Restored <EuiFlexItem> but added grow=false to properly align icons. Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
e873e7d91c
commit
bc41f88f6c
1 changed files with 3 additions and 3 deletions
|
@ -199,7 +199,7 @@ export const PolicyTable: React.FunctionComponent<Props> = ({
|
|||
render: ({ name, inProgress, isManagedPolicy }: SlmPolicy) => {
|
||||
return (
|
||||
<EuiFlexGroup gutterSize="s">
|
||||
<EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<PolicyExecuteProvider>
|
||||
{executePolicyPrompt => {
|
||||
return (
|
||||
|
@ -235,7 +235,7 @@ export const PolicyTable: React.FunctionComponent<Props> = ({
|
|||
}}
|
||||
</PolicyExecuteProvider>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiToolTip
|
||||
content={i18n.translate(
|
||||
'xpack.snapshotRestore.policyList.table.actionEditTooltip',
|
||||
|
@ -257,7 +257,7 @@ export const PolicyTable: React.FunctionComponent<Props> = ({
|
|||
/>
|
||||
</EuiToolTip>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<PolicyDeleteProvider>
|
||||
{deletePolicyPrompt => {
|
||||
const label = !isManagedPolicy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue