fix: select onKeyDown error #217
parent
4ebcc99055
commit
0983a0f83f
|
@ -45,7 +45,7 @@ export default function wrapWithConnect (WrappedComponent) {
|
||||||
}
|
}
|
||||||
Object.keys(methods).map(m => {
|
Object.keys(methods).map(m => {
|
||||||
ProxyWrappedComponent.methods[m] = function () {
|
ProxyWrappedComponent.methods[m] = function () {
|
||||||
this.getProxyWrappedInstance()[m](...arguments)
|
return this.getProxyWrappedInstance()[m](...arguments)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return ProxyWrappedComponent
|
return ProxyWrappedComponent
|
||||||
|
|
Loading…
Reference in New Issue