Merge pull request #5579 from influxdata/5567/disable_dashboard_auto_refresh
fix(ui): disable default dashboard auto refreshpull/5582/head^2
commit
d5a27f07cf
|
@ -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.
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue