Check feature flag for plan features pane display options

This commit is contained in:
Navneet Gupta 2018-05-14 23:29:45 -07:00
Родитель 3dc2958481
Коммит 52807a5e77
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -414,7 +414,7 @@ export class FeatureTimelineGrid extends React.Component<IFeatureTimelineGridPro
);
let contents = grid;
if (!isSubGrid && this.props.planFeaturesState.show) {
if (!isSubGrid && this.props.allowPlanFeatures && this.props.planFeaturesState.show) {
contents = (
<SplitterLayout
secondaryInitialSize={this.props.planFeaturesState.paneWidth}