Skip to content

Commit

Permalink
Remove beta label from tutorial overview page (elastic#20977)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ruflin committed Jul 19, 2018
1 parent cf872b2 commit 2e83f80
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
});

Expand Down

0 comments on commit 2e83f80

Please sign in to comment.