Skip to content

Commit

Permalink
Remove beta label from tutorial overview page (elastic#20977) (elasti…
Browse files Browse the repository at this point in the history
…c#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.
  • Loading branch information
ruflin authored Jul 20, 2018
1 parent 02f36c2 commit 13f67f1
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 13f67f1

Please sign in to comment.