Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Commit

Permalink
restore Dropdown.onRenderCaret
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkuz committed Mar 30, 2017
1 parent e7bd10a commit 49a9a7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Dropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default class Dropdown extends PureComponent {
}

render() {
const { dropdownProps, children } = this.props;
const { dropdownProps, onRenderCaret, children } = this.props;

const value = this.state.value === null ? '' : this.state.value;

Expand All @@ -178,6 +178,7 @@ export default class Dropdown extends PureComponent {
popupShown={this.state.listShown}
isActive={this.state.isActive}
registerInput={this.registerInput}
onRenderCaret={onRenderCaret}
>
{children}
</InputPopup>
Expand Down

0 comments on commit 49a9a7c

Please sign in to comment.