From 13f67f1a08c1978614971de97dd88efeafc72fa5 Mon Sep 17 00:00:00 2001 From: Nicolas Ruflin Date: Fri, 20 Jul 2018 11:35:30 +0200 Subject: [PATCH] Remove beta label from tutorial overview page (#20977) (#20988) Many modules are still in beta which made the beta label not very useful in the overview page. This disables the beta label for now. The label is still shown when clicking on module. --- .../kibana/public/home/components/tutorial_directory.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core_plugins/kibana/public/home/components/tutorial_directory.js b/src/core_plugins/kibana/public/home/components/tutorial_directory.js index 39562910c192d..4ed5bd4e5327d 100644 --- a/src/core_plugins/kibana/public/home/components/tutorial_directory.js +++ b/src/core_plugins/kibana/public/home/components/tutorial_directory.js @@ -97,7 +97,8 @@ export class TutorialDirectory extends React.Component { description: tutorialConfig.shortDescription, url: this.props.addBasePath(`#/home/tutorial/${tutorialConfig.id}`), elasticCloud: tutorialConfig.elasticCloud, - isBeta: tutorialConfig.isBeta, + // Beta label is skipped on the tutorial overview page for now. Too many beta labels. + //isBeta: tutorialConfig.isBeta, }; });