diff --git a/CHANGELOG.md b/CHANGELOG.md index 38eb22735c6..ea145df6663 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,6 +41,7 @@ 1. [16374](https://github.com/influxdata/influxdb/pull/16374): Update influx CLI, only show "see help" message, instead of the whole usage. 1. [16380](https://github.com/influxdata/influxdb/pull/16380): Fix notification tag matching rules and enable tests to verify 1. [16376](https://github.com/influxdata/influxdb/pull/16376): Extend the y-axis when stacked graph is selected +1. [16404](https://github.com/influxdata/influxdb/pull/16404): Fixed query reset bug that was resetting query in script editor whenever dates were changed ### UI Improvements diff --git a/ui/src/timeMachine/reducers/index.ts b/ui/src/timeMachine/reducers/index.ts index cf5a8141419..e42531c6be5 100644 --- a/ui/src/timeMachine/reducers/index.ts +++ b/ui/src/timeMachine/reducers/index.ts @@ -752,8 +752,6 @@ export const timeMachineReducer = ( draftState.queryBuilder.tags[index].values = values draftState.queryBuilder.tags[index].valuesStatus = RemoteDataState.Done - - buildActiveQuery(draftState) }) }