Skip to content

Commit

Permalink
Corrected name of the prop
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici authored and Çağatay Çivici committed Feb 13, 2018
1 parent 8529db9 commit 2e2745e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/dropdown/Dropdown.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface DropdownProps {
autoWidth?: boolean;
scrollHeight?: string;
filter?: boolean;
filterplaceholder?: string;
filterPlaceholder?: string;
editable?:boolean;
placeholder?: string;
required?: boolean;
Expand Down
4 changes: 2 additions & 2 deletions src/components/dropdown/Dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class Dropdown extends Component {
autoWidth: true,
scrollHeight: '200px',
filter: false,
filterplaceholder: null,
filterPlaceholder: null,
editable: false,
placeholder:null,
required: false,
Expand Down Expand Up @@ -47,7 +47,7 @@ export class Dropdown extends Component {
autoWidth: PropTypes.bool,
scrollHeight: PropTypes.string,
filter: PropTypes.bool,
filterplaceholder: PropTypes.string,
filterPlaceholder: PropTypes.string,
editable:PropTypes.bool,
placeholder: PropTypes.string,
required: PropTypes.bool,
Expand Down

0 comments on commit 2e2745e

Please sign in to comment.