diff --git a/CHANGELOG.md b/CHANGELOG.md index 03494d61e9b..49c91ceea99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ 1. [11683](https://github.com/influxdata/influxdb/pull/11683): Change the wording for the plugin config form button to Done 1. [11689](https://github.com/influxdata/influxdb/pull/11689): Change the wording for the Collectors configure step button to Create and Verify 1. [11697](https://github.com/influxdata/influxdb/pull/11697): Standardize page loading spinner styles +1. [11711](https://github.com/influxdata/influxdb/pull/11711): Show checkbox on Save As button in data explorer ## v2.0.0-alpha.1 [2019-01-23] diff --git a/ui/src/clockface/components/dropdowns/Dropdown.scss b/ui/src/clockface/components/dropdowns/Dropdown.scss index ac58c37adce..76866e41dae 100644 --- a/ui/src/clockface/components/dropdowns/Dropdown.scss +++ b/ui/src/clockface/components/dropdowns/Dropdown.scss @@ -130,6 +130,10 @@ opacity: 1; transform: translate(-50%,-50%) scale(1,1); } + + .checked &:after { + opacity: 1; + } } /* Themes */ diff --git a/ui/src/dataExplorer/components/DashboardsDropdown.tsx b/ui/src/dataExplorer/components/DashboardsDropdown.tsx index 07fcbef86d6..2c3e0f34c23 100644 --- a/ui/src/dataExplorer/components/DashboardsDropdown.tsx +++ b/ui/src/dataExplorer/components/DashboardsDropdown.tsx @@ -58,7 +58,9 @@ class DashboardsDropdown extends PureComponent { } private get dividerItem(): JSX.Element { - return + return ( + + ) } } export default DashboardsDropdown