Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cypress/e2e/shared/dashboardsIndex.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ describe('Dashboards', () => {
// visit another page
cy.getByTestID('tree-nav')
cy.contains('Settings').click({force: true})
cy.getByTestID('variables--tab').click()
cy.contains("Looks like there aren't any Variables, why not create one?")
// return to dashboards page
cy.contains('Dashboards').click()
Expand Down
2 changes: 1 addition & 1 deletion src/pageLayout/containers/MainNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const generateNavItems = (
testID: 'nav-item-settings',
icon: IconFont.CogOutline_New,
label: 'Settings',
link: `/orgs/${orgID}/settings/variables`,
link: `/orgs/${orgID}/settings`,
activeKeywords: ['settings'],
menu: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/shared/containers/SetOrg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ const SetOrg: FC = () => {
<Route
exact
path={`${orgPath}/${SETTINGS}`}
component={VariablesIndex}
component={LabelsIndex}
/>
{/* Users - route has multiple paths to ensure backwards compatibility while https://github.com/influxdata/ui/issues/5396 is being worked on*/}
{CLOUD && (
Expand Down