mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Entity Analytics][Risk Score] Remove beta badge (#208365)
## Summary This PR removed the Risk Score beta badge in the manage page flyout. 
This commit is contained in:
parent
34092ec953
commit
e06fb1b38a
1 changed files with 0 additions and 15 deletions
|
@ -21,14 +21,10 @@ import {
|
|||
EuiText,
|
||||
EuiTitle,
|
||||
useGeneratedHtmlId,
|
||||
EuiBetaBadge,
|
||||
useEuiTheme,
|
||||
} from '@elastic/eui';
|
||||
import React from 'react';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import { css } from '@emotion/react';
|
||||
|
||||
import { BETA } from '../../../common/translations';
|
||||
import * as i18n from './translations';
|
||||
import { useOnOpenCloseHandler } from '../../../helper_hooks';
|
||||
import { RiskScoreLevel } from '../severity/common';
|
||||
|
@ -119,7 +115,6 @@ export const RiskInformationButtonEmpty = ({ riskEntity }: { riskEntity: EntityT
|
|||
};
|
||||
|
||||
export const RiskInformationFlyout = ({ handleOnClose }: { handleOnClose: () => void }) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const simpleFlyoutTitleId = useGeneratedHtmlId({
|
||||
prefix: 'RiskInformation',
|
||||
});
|
||||
|
@ -139,16 +134,6 @@ export const RiskInformationFlyout = ({ handleOnClose }: { handleOnClose: () =>
|
|||
<h2 id={simpleFlyoutTitleId}>{i18n.TITLE}</h2>
|
||||
</EuiTitle>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiBetaBadge
|
||||
label={BETA}
|
||||
size="s"
|
||||
css={css`
|
||||
color: ${euiTheme.colors.textParagraph};
|
||||
margin-top: ${euiTheme.size.xxs};
|
||||
`}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiFlyoutHeader>
|
||||
<EuiFlyoutBody>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue