Remove beta label from tutorial overview page (#20977)

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.
This commit is contained in:
Nicolas Ruflin 2018-07-19 17:09:03 +02:00 committed by GitHub
parent b434652452
commit 469c00592f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
};
});