logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 7afa6c9f406795a4fddb3c40a4011b321ee460bc
parent 538903f9d8deee121526a2c7337c0db98d3b7d71
Author: Henry Jameson <me@hjkos.com>
Date:   Tue, 22 Mar 2022 20:22:28 +0200

listeners aren't actually used

Diffstat:

Msrc/hocs/with_load_more/with_load_more.jsx2+-
Msrc/hocs/with_subscription/with_subscription.jsx2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 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 @@ -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 (