From eb504c23e0914ed00752432fb51e85ee7184b9b0 Mon Sep 17 00:00:00 2001 From: ruflin Date: Thu, 19 Jul 2018 14:02:52 +0200 Subject: [PATCH] Remove beta label from tutorial overview page 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, }; });