Merge pull request #5579 from influxdata/5567/disable_dashboard_auto_refresh

fix(ui): disable default dashboard auto refresh
pull/5582/head^2
Ivan Kudibal 2020-09-29 21:27:59 +02:00 committed by GitHub
commit d5a27f07cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
### Bug Fixes
1. [#5579](https://github.com/influxdata/chronograf/pull/5579): Disable default dashboard auto refresh.
### Features
1. [#5577](https://github.com/influxdata/chronograf/pull/5577): Allow to configure HTTP basic access authentication.

View File

@ -406,7 +406,7 @@ export const HTTP_FORBIDDEN = 403
export const HTTP_NOT_FOUND = 404
export const AUTOREFRESH_DEFAULT = 0 // in milliseconds
export const DASHBOARD_REFRESH_DEFAULT = 10000 // in milliseconds
export const DASHBOARD_REFRESH_DEFAULT = 0 // in milliseconds
export const SHOW_TEMP_VAR_CONTROL_BAR_DEFAULT = false
export const GRAPH = 'graph'