Fix Kapacitor Telegram config to display correct disableNotification setting (#1142)

* Fix render value for disableNotification

* Update changelog
pull/1149/head
Jared Scheib 2017-03-30 16:58:01 -07:00 committed by GitHub
parent 184235db27
commit ae00aa16a0
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
1. [#1104](https://github.com/influxdata/chronograf/pull/1104): Fix windows hosts on host list
1. [#1125](https://github.com/influxdata/chronograf/pull/1125): Fix visualizations not showing graph name
1. [#1133](https://github.com/influxdata/chronograf/issue/1133): Fix Enterprise Kapacitor authentication.
1. [#1142](https://github.com/influxdata/chronograf/issue/1142): Fix Kapacitor Telegram config to display correct disableNotification setting
### Features
1. [#1112](https://github.com/influxdata/chronograf/pull/1112): Add ability to delete a dashboard

View File

@ -49,7 +49,7 @@ const TelegramConfig = React.createClass({
const {options} = this.props.config
const {token} = options
const chatID = options['chat-id']
const disableNotification = options['chat-id']
const disableNotification = options['disable-notification']
const disableWebPagePreview = options['disable-web-page-preview']
const parseMode = options['parse-mode']