mutes and blocks tab works

This commit is contained in:
Henry Jameson 2022-03-18 13:36:08 +02:00
parent b3ed29ff02
commit 5948d20f00
1 changed files with 4 additions and 7 deletions

View File

@ -63,14 +63,11 @@ const withSubscription = ({
render () {
if (!this.error && !this.loading) {
const props = {
props: {
...this.$props,
[childPropName]: this.fetchedData
},
on: this.$listeners,
scopedSlots: this.$scopedSlots
...this.$props,
[childPropName]: this.fetchedData
// on: this.$listeners // TODO
}
const children = Object.entries(this.$slots).map(([key, value]) => h('template', { slot: key }, value))
const children = this.$slots
return (
<div class="with-subscription">
<WrappedComponent {...props}>