Skip to content

Commit 5c25226

Browse files
committed
fix: tree-select searchPlaceholder incorrect #125
1 parent c0796f3 commit 5c25226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/vc-tree-select/src/Select.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ const Select = {
437437
if (isMultiple(props)) {
438438
placeholder = getComponentFromProp(this, 'placeholder') || getComponentFromProp(this, 'searchPlaceholder')
439439
} else {
440-
placeholder = getComponentFromProp(this, 'placeholder')
440+
placeholder = getComponentFromProp(this, 'searchPlaceholder')
441441
}
442442
if (placeholder) {
443443
return (

0 commit comments

Comments
 (0)