Skip to content

Commit 0983a0f

Browse files
committed
fix: select onKeyDown error #217
1 parent 4ebcc99 commit 0983a0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/_util/proxyComponent.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default function wrapWithConnect (WrappedComponent) {
4545
}
4646
Object.keys(methods).map(m => {
4747
ProxyWrappedComponent.methods[m] = function () {
48-
this.getProxyWrappedInstance()[m](...arguments)
48+
return this.getProxyWrappedInstance()[m](...arguments)
4949
}
5050
})
5151
return ProxyWrappedComponent

0 commit comments

Comments
 (0)