diff --git a/CHANGELOG.md b/CHANGELOG.md index d5283a0003..a4c7842c58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ 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 + 1. [#1051](https://github.com/influxdata/chronograf/issue/1051): Exit presentation mode when using the browser back button ### Features 1. [#1112](https://github.com/influxdata/chronograf/pull/1112): Add ability to delete a dashboard diff --git a/ui/src/index.js b/ui/src/index.js index 2eb1d14d9f..2596631aa6 100644 --- a/ui/src/index.js +++ b/ui/src/index.js @@ -40,6 +40,9 @@ if (basepath) { basename: "", }) } +browserHistory.listen(() => { + store.dispatch(disablePresentationMode()) +}) window.addEventListener('keyup', (event) => { if (event.key === 'Escape') {