diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c062b8a163..27e23029446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ 1. [15777](https://github.com/influxdata/influxdb/pull/15777): Fix long startup when running 'influx help' 1. [15713](https://github.com/influxdata/influxdb/pull/15713): Mock missing Flux dependencies when creating tasks 1. [15731](https://github.com/influxdata/influxdb/pull/15731): Ensure array cursor iterator stats accumulate all cursor stats +1. [15866](https://github.com/influxdata/influxdb/pull/15866): Do not show Members section in Cloud environments ### UI Improvements 1. [15809](https://github.com/influxdata/influxdb/pull/15809): Redesign cards and animations on getting started page diff --git a/ui/src/index.tsx b/ui/src/index.tsx index 4b06947d4dc..5f78e3e09ae 100644 --- a/ui/src/index.tsx +++ b/ui/src/index.tsx @@ -7,6 +7,7 @@ import {Provider} from 'react-redux' import {Router, Route, useRouterHistory, IndexRoute} from 'react-router' import {createHistory, History} from 'history' +import {CLOUD} from 'src/shared/constants' import configureStore from 'src/store/configureStore' import {loadLocalStorage} from 'src/localStorage' @@ -349,10 +350,20 @@ class Root extends PureComponent { - - - - + {CLOUD ? ( + + ) : ( + <> + + + + + + )} + { const tokensLink = `${orgPrefix}/load-data/tokens` const clientLibrariesLink = `${orgPrefix}/load-data/client-libraries` // Settings - const settingsLink = `${orgPrefix}/settings/members` + const settingsLink = `${orgPrefix}/settings` const membersLink = `${orgPrefix}/settings/members` const variablesLink = `${orgPrefix}/settings/variables` const templatesLink = `${orgPrefix}/settings/templates` @@ -253,15 +253,17 @@ class SideNav extends PureComponent { )} active={getNavItemActivation(['settings'], location.pathname)} > - ( - - Members - - )} - active={getNavItemActivation(['members'], location.pathname)} - key="members" - /> + + ( + + Members + + )} + active={getNavItemActivation(['members'], location.pathname)} + key="members" + /> + ( diff --git a/ui/src/settings/components/SettingsNavigation.tsx b/ui/src/settings/components/SettingsNavigation.tsx index fcf2252901a..55e318cdf0c 100644 --- a/ui/src/settings/components/SettingsNavigation.tsx +++ b/ui/src/settings/components/SettingsNavigation.tsx @@ -36,7 +36,7 @@ class SettingsNavigation extends PureComponent { { text: 'Members', id: 'members', - cloudExclude: false, + cloudExclude: true, }, { text: 'Variables',