diff --git a/src/hocs/with_load_more/with_load_more.jsx b/src/hocs/with_load_more/with_load_more.jsx index e57f9b20..360b439a 100644 --- a/src/hocs/with_load_more/with_load_more.jsx +++ b/src/hocs/with_load_more/with_load_more.jsx @@ -81,10 +81,10 @@ const withLoadMore = ({ } }, render () { + console.log(this.$listeners) const props = { ...this.$props, [childPropName]: this.entries - // on: this.$listeners // TODO fix listeners } const children = this.$slots return ( diff --git a/src/hocs/with_subscription/with_subscription.jsx b/src/hocs/with_subscription/with_subscription.jsx index 5ba2662b..da1b2cc9 100644 --- a/src/hocs/with_subscription/with_subscription.jsx +++ b/src/hocs/with_subscription/with_subscription.jsx @@ -61,11 +61,11 @@ const withSubscription = ({ } }, render () { + console.log(this.$listeners) if (!this.error && !this.loading) { const props = { ...this.$props, [childPropName]: this.fetchedData - // on: this.$listeners // TODO } const children = this.$slots return (