Update ServerCounter.plugin.js

This commit is contained in:
Mirco Wittrien 2020-11-16 09:59:26 +01:00
parent 2aa43255d9
commit adb02f76f2
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ module.exports = (_ => {
let childrenRender = tree.props.children;
tree.props.children = (...args) => {
let children = childrenRender(...args);
this.checkTree(children);
this.injectCounter(children);
return children;
};
}