Skip to content

Commit

Permalink
fix: select search not work #3144
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Nov 10, 2020
1 parent c523266 commit 8096003
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion antdv-demo
2 changes: 1 addition & 1 deletion components/vc-select/utils/valueUtil.ts
Expand Up @@ -168,7 +168,7 @@ function toRawString(content: VNodeChild): string {
if (isVNode(item)) {
return item?.el?.innerText || item?.el?.wholeText;
} else {
return '';
return item;
}
})
.join('');
Expand Down

0 comments on commit 8096003

Please sign in to comment.