File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
src/pageLayout/containers Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import {getNavItemActivation} from 'src/pageLayout/utils'
1919import { getOrg } from 'src/organizations/selectors'
2020import { AppSettingContext } from 'src/shared/contexts/app'
2121import { event } from 'src/cloud/utils/reporting'
22+ import { isFlagEnabled } from 'src/shared/utils/featureFlag'
2223import { SafeBlankLink } from 'src/utils/SafeBlankLink'
2324
2425// Types
@@ -240,6 +241,22 @@ const TreeSidebar: FC<ReduxProps> = ({
240241 />
241242 ) }
242243 />
244+ { CLOUD && isFlagEnabled ( 'requestPoc' ) && (
245+ < >
246+ < TreeNav . SubHeading label = "Useful Links" />
247+ < TreeNav . SubItem
248+ id = "request-poc"
249+ label = "Request Proof of Concept"
250+ testID = "nav-subitem-request-poc"
251+ linkElement = { ( ) => (
252+ < SafeBlankLink
253+ href = "https://www.influxdata.com/proof-of-concept/"
254+ onClick = { ( ) => handleEventing ( 'requestPOC' ) }
255+ />
256+ ) }
257+ />
258+ </ >
259+ ) }
243260 </ TreeNav . SubMenu >
244261 </ TreeNav . Item >
245262 </ TreeNav >
You can’t perform that action at this time.
0 commit comments