Make handleClickOutside on TemplateVariableRow work the same as handleCancelEdit (#1400)

* Give handleClickOutside the same behavior as handleCancelEdit

* Update changelog
pull/10616/head
Jared Scheib 2017-05-04 16:57:24 -07:00 committed by GitHub
parent c4d41c997f
commit ac2b4d404d
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
1. [#1364](https://github.com/influxdata/chronograf/pull/1364): Fix link to home when using the --basepath option
1. [#1370](https://github.com/influxdata/chronograf/pull/1370): Remove notification to login outside of session timeout
1. [#1376](https://github.com/influxdata/chronograf/pull/1376): Fix queries built in query builder with math functions in fields
1. [#1399](https://github.com/influxdata/chronograf/pull/1399): User can no longer create a blank template variable by clicking outside a newly added one
### Features
### UI Improvements

View File

@ -301,7 +301,7 @@ class RowWrapper extends Component {
}
handleClickOutside() {
this.setState({isEditing: false})
this.handleCancelEdit()
}
handleStartEdit(name) {