Skip to content
This repository has been archived by the owner on Jun 10, 2021. It is now read-only.

Commit

Permalink
disable analytics tab from create flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg committed May 4, 2021
1 parent 14b13bf commit 6d13eac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/components/modals/CreateFlag.js
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ const CreateFlag = class extends Component {
)
}
</TabItem>
{ (this.props.hasFeature('flag_analytics') && this.props.flagId) && (
{ !projectOverrides.disableInflux && (this.props.hasFeature('flag_analytics') && this.props.flagId) && (
<TabItem data-test="analytics" tabLabel="Analytics">
<FormGroup className="mb-4 mr-3 ml-3">
<Panel
Expand Down

0 comments on commit 6d13eac

Please sign in to comment.