diff --git a/src/components/dropdown/Dropdown.js b/src/components/dropdown/Dropdown.js index 043f923fba..85221334df 100644 --- a/src/components/dropdown/Dropdown.js +++ b/src/components/dropdown/Dropdown.js @@ -519,12 +519,13 @@ export class Dropdown extends Component { } renderHiddenSelect(selectedOption) { - let value = selectedOption ? selectedOption.value : null; - let option = selectedOption ? : null; + let placeHolderOption = ; + let option = selectedOption ? : null; return (
- this.nativeSelect = el} required={this.props.required} tabIndex="-1" aria-hidden="true"> + {placeHolderOption} {option}
@@ -628,6 +629,8 @@ export class Dropdown extends Component { if (this.props.tooltip) { this.renderTooltip(); } + + this.nativeSelect.selectedIndex = 1; } componentWillUnmount() { @@ -662,6 +665,8 @@ export class Dropdown extends Component { else this.renderTooltip(); } + + this.nativeSelect.selectedIndex = 1; } renderTooltip() {