Skip to content

Commit

Permalink
fix: tree-select searchPlaceholder incorrect #125
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Aug 19, 2018
1 parent 6cd609c commit a07f50c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/vc-tree-select/src/Select.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ const Select = {
if (isMultiple(props)) {
placeholder = getComponentFromProp(this, 'placeholder') || getComponentFromProp(this, 'searchPlaceholder')
} else {
placeholder = getComponentFromProp(this, 'placeholder')
placeholder = getComponentFromProp(this, 'searchPlaceholder')
}
if (placeholder) {
return (
Expand Down

0 comments on commit a07f50c

Please sign in to comment.