stuff
This commit is contained in:
parent
a3c6cee3b7
commit
17e0fa6f2e
|
@ -5704,10 +5704,9 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
|
|||
});
|
||||
}
|
||||
render() {
|
||||
if (!this.props.children) return null;
|
||||
if (typeof this.props.children != "function") {
|
||||
let children = this.props.children;
|
||||
this.props.children = _ => {return children;};
|
||||
this.props.children = _ => {return children || BDFDB.ReactUtils.createElement("div", {style: {height: "100%", width: "100%"}});};
|
||||
}
|
||||
return BDFDB.ReactUtils.createElement(LibraryComponents.Clickable, {
|
||||
className: this.props.className,
|
||||
|
@ -5999,10 +5998,9 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
|
|||
this.state = {shouldShowTooltip: true};
|
||||
}
|
||||
render() {
|
||||
if (!this.props.children) return null;
|
||||
if (typeof this.props.children != "function") {
|
||||
let children = this.props.children;
|
||||
this.props.children = _ => {return children;};
|
||||
this.props.children = _ => {return children || BDFDB.ReactUtils.createElement("div", {style: {height: "100%", width: "100%"}});};
|
||||
}
|
||||
return BDFDB.ReactUtils.createElement(LibraryComponents.Clickable, {
|
||||
className: this.props.className,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -3,7 +3,7 @@
|
|||
class EditUsers {
|
||||
getName () {return "EditUsers";}
|
||||
|
||||
getVersion () {return "3.6.6";}
|
||||
getVersion () {return "3.6.7";}
|
||||
|
||||
getAuthor () {return "DevilBro";}
|
||||
|
||||
|
|
Loading…
Reference in New Issue