diff --git a/CHANGELOG.md b/CHANGELOG.md index 18465f9b06..102876aa3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v2.0.0-beta.2 [Unreleased] + +### UI Improvements + +1. [16203](https://github.com/influxdata/influxdb/pull/16203): Move cloud navigation to top of page instead of within left side navigation + ## v2.0.0-beta.1 [2020-01-08] ### Features diff --git a/ui/cypress/e2e/explorer.test.ts b/ui/cypress/e2e/explorer.test.ts index 27e93b92e1..7d8656b1f5 100644 --- a/ui/cypress/e2e/explorer.test.ts +++ b/ui/cypress/e2e/explorer.test.ts @@ -647,16 +647,14 @@ describe('DataExplorer', () => { describe('as a task', () => { beforeEach(() => { - cy.getByTestID('task--radio-button') - .click() + cy.getByTestID('task--radio-button').click() }) it('should autoselect the first bucket', () => { cy.getByTestID('task-options-bucket-dropdown--button').within(() => { - cy.get('span.cf-dropdown--selected') - .then((elem) => { - expect(elem.text()).to.include('defbuck') - }) + cy.get('span.cf-dropdown--selected').then(elem => { + expect(elem.text()).to.include('defbuck') + }) }) }) }) diff --git a/ui/global.d.ts b/ui/global.d.ts index b4fe6efbdb..95dac61261 100644 --- a/ui/global.d.ts +++ b/ui/global.d.ts @@ -2,3 +2,4 @@ // got some globals here that only exist during compilation // +declare module '*.png' diff --git a/ui/src/App.tsx b/ui/src/App.tsx index c86dcfd8e7..a82296370a 100644 --- a/ui/src/App.tsx +++ b/ui/src/App.tsx @@ -9,6 +9,8 @@ import TooltipPortal from 'src/portals/TooltipPortal' import NotesPortal from 'src/portals/NotesPortal' import Notifications from 'src/shared/components/notifications/Notifications' import OverlayController from 'src/overlays/components/OverlayController' +import CloudNav from 'src/pageLayout/components/CloudNav' +import CloudOnly from 'src/shared/components/cloud/CloudOnly' // Types import {AppState} from 'src/types' @@ -23,14 +25,19 @@ interface OwnProps { type Props = OwnProps & StateProps const App: SFC = ({children, inPresentationMode}) => ( - - - - - -