Skip to content
Snippets Groups Projects
Commit 5948d20f authored by HJ's avatar HJ :fire:
Browse files

mutes and blocks tab works

parent b3ed29ff
No related branches found
No related tags found
2 merge requests!1711Update stable - 2.5.0 release,!1385Migration to Vue 3 (again)
Pipeline #39338 failed
......@@ -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}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment