diff --git a/CHANGELOG.md b/CHANGELOG.md
index 42bf2fb139..93f5df85d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,11 +10,13 @@
1. [#1382](https://github.com/influxdata/chronograf/pull/1382): Add line-protocol proxy for InfluxDB data sources
1. [#1391](https://github.com/influxdata/chronograf/pull/1391): :dashboardTime: - Support cell-specific time ranges
1. [#1201](https://github.com/influxdata/chronograf/pull/1201): Allow chronograf to enable/disable all tickscripts.
+ 1. [#1401](https://github.com/influxdata/chronograf/pull/1401): Add support for kapacitor config deletion.
### UI Improvements
1. [#1378](https://github.com/influxdata/chronograf/pull/1378): Save query time range for dashboards
1. [#1365](https://github.com/influxdata/chronograf/pull/1365): Show red indicator on Hosts Page for an offline host
1. [#1373](https://github.com/influxdata/chronograf/pull/1373): Re-address dashboard cell stacking contexts
+ 1. [#1385](https://github.com/influxdata/chronograf/pull/1385): Combined Measurements & Tags columns within the Data Explorer, feels more spacious and intuitive. New design for applying functions to Fields.
1. [#602](https://github.com/influxdata/chronograf/pull/602): Normalize terminology in app
1. [#1392](https://github.com/influxdata/chronograf/pull/1392): Overlays are now full screen
1. [#1395](https://github.com/influxdata/chronograf/pull/1395): Change default global time range to past 1 hour
diff --git a/ui/src/dashboards/components/CellEditorOverlay.js b/ui/src/dashboards/components/CellEditorOverlay.js
index 2044fefeeb..9f9be2d135 100644
--- a/ui/src/dashboards/components/CellEditorOverlay.js
+++ b/ui/src/dashboards/components/CellEditorOverlay.js
@@ -3,9 +3,7 @@ import React, {Component, PropTypes} from 'react'
import _ from 'lodash'
import uuid from 'node-uuid'
-import ResizeContainer, {
- ResizeBottom,
-} from 'src/shared/components/ResizeContainer'
+import ResizeContainer from 'src/shared/components/ResizeContainer'
import QueryMaker from 'src/data_explorer/components/QueryMaker'
import Visualization from 'src/data_explorer/components/Visualization'
import OverlayControls from 'src/dashboards/components/OverlayControls'
@@ -14,6 +12,7 @@ import * as queryModifiers from 'src/utils/queryTransitions'
import defaultQueryConfig from 'src/utils/defaultQueryConfig'
import buildInfluxQLQuery from 'utils/influxql'
import {getQueryConfig} from 'shared/apis'
+import {MINIMUM_HEIGHTS} from 'src/data_explorer/constants'
class CellEditorOverlay extends Component {
constructor(props) {
@@ -152,8 +151,12 @@ class CellEditorOverlay extends Component {
}
return (
-
-
+
+
-
-
-
-
-
-
+
+
+
+
)
diff --git a/ui/src/dashboards/components/TemplateVariableManager.js b/ui/src/dashboards/components/TemplateVariableManager.js
index 79dd0c32d9..36334f195e 100644
--- a/ui/src/dashboards/components/TemplateVariableManager.js
+++ b/ui/src/dashboards/components/TemplateVariableManager.js
@@ -1,5 +1,5 @@
import React, {Component, PropTypes} from 'react'
-import classNames from 'classnames'
+import classnames from 'classnames'
import uuid from 'node-uuid'
import TemplateVariableTable
@@ -34,7 +34,7 @@ const TemplateVariableManager = ({
Add Variable