This commit is contained in:
Mirco Wittrien 2020-02-07 18:41:34 +01:00
parent 7225d9042c
commit 5d2082d799
2 changed files with 2 additions and 2 deletions

View File

@ -1637,7 +1637,7 @@
reactEle.ref = instance => {
if (typeof ref == "function") ref(instance);
let node = BDFDB.ReactUtils.findDOMNode(instance);
if (Node.prototype.isPrototypeOf(node)) for (let key in styles) ele.style.setProperty(key, styles[key], "important");
if (Node.prototype.isPrototypeOf(node)) for (let key in styles) node.style.setProperty(key, styles[key], "important");
};
};
BDFDB.ReactUtils.findChildren = function (nodeOrInstance, config) {

File diff suppressed because one or more lines are too long