mutes and blocks tab works

このコミットが含まれているのは:
Henry Jameson 2022-03-18 13:36:08 +02:00
コミット 5948d20f00
1個のファイルの変更4行の追加7行の削除

ファイルの表示

@ -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}>