Skip to content

Commit

Permalink
[Lens] Remove beta labels
Browse files Browse the repository at this point in the history
  • Loading branch information
wylieconlon committed Aug 20, 2020
1 parent 3a66bb5 commit 880aca5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
EuiIcon,
EuiImage,
EuiText,
EuiBetaBadge,
EuiButtonEmpty,
EuiLink,
} from '@elastic/eui';
Expand Down Expand Up @@ -192,10 +191,6 @@ export function InnerWorkspacePanel({
}

function renderEmptyWorkspace() {
const tooltipContent = i18n.translate('xpack.lens.editorFrame.tooltipContent', {
defaultMessage:
'Lens is in beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features',
});
return (
<div className="eui-textCenter">
<EuiText textAlign="center" grow={false} color="subdued" data-test-subj="empty-workspace">
Expand All @@ -214,8 +209,7 @@ export function InnerWorkspacePanel({
<FormattedMessage
id="xpack.lens.editorFrame.emptyWorkspaceHeading"
defaultMessage="Lens is a new tool for creating visualizations"
/>{' '}
<EuiBetaBadge label="Beta" tooltipContent={tooltipContent} />
/>
</p>
<p>
<small>
Expand Down
4 changes: 2 additions & 2 deletions x-pack/plugins/lens/public/vis_type_alias.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const getLensAliasConfig = (): VisTypeAlias => ({
defaultMessage: `Lens is a simpler way to create basic visualizations`,
}),
icon: 'lensApp',
stage: 'beta',
stage: 'production',
appExtensions: {
visualizations: {
docTypes: ['lens'],
Expand All @@ -42,7 +42,7 @@ export const getLensAliasConfig = (): VisTypeAlias => ({
editUrl: getEditPath(id),
editApp: 'lens',
icon: 'lensApp',
stage: 'beta',
stage: 'production',
savedObjectType: type,
typeTitle: i18n.translate('xpack.lens.visTypeAlias.type', { defaultMessage: 'Lens' }),
};
Expand Down

0 comments on commit 880aca5

Please sign in to comment.