diff --git a/CHANGELOG.md b/CHANGELOG.md index 47edfecdcac..cacce8f96c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v2.0.0-alpha.21 [unreleased] + +### Features + +### Bug Fixes +1. [16101](https://github.com/influxdata/influxdb/pull/16101): Gracefully handle invalid user-supplied JSON +1. [16105](https://github.com/influxdata/influxdb/pull/16105): Fix crash when loading queries built using Query Builder + +### UI Improvements + ## v2.0.0-alpha.20 [2019-11-20] ### Features @@ -28,7 +38,6 @@ 1. [15853](https://github.com/influxdata/influxdb/pull/15853): Prompt users to make a dashboard when dashboards are empty 1. [15884](https://github.com/influxdata/influxdb/pull/15884): Remove name editing from query definition during threshold check creation 1. [15975](https://github.com/influxdata/influxdb/pull/15975): Wait until user stops dragging and releases marker before zooming in after threshold changes -1. [16101](https://github.com/influxdata/influxdb/pull/16101): Gracefully handle invalid user-supplied JSON ### UI Improvements 1. [15809](https://github.com/influxdata/influxdb/pull/15809): Redesign cards and animations on getting started page diff --git a/ui/src/timeMachine/reducers/index.ts b/ui/src/timeMachine/reducers/index.ts index 99ac6911dd7..10dd85ec3f8 100644 --- a/ui/src/timeMachine/reducers/index.ts +++ b/ui/src/timeMachine/reducers/index.ts @@ -1103,7 +1103,10 @@ const initialQueryBuilderState = ( bucketsStatus: RemoteDataState.NotStarted, functions: [], aggregateWindow: {period: 'auto'}, - tags: initialStateHelper().queryBuilder.tags, + tags: builderConfig.tags.map(() => { + const [defaultTag] = initialStateHelper().queryBuilder.tags + return defaultTag + }), } }