Update 0BDFDB.plugin.js

This commit is contained in:
Mirco Wittrien 2020-11-12 16:37:22 +01:00
parent f52ef35e2e
commit e3b88b6c12
1 changed files with 16 additions and 12 deletions

View File

@ -4512,22 +4512,26 @@ module.exports = (_ => {
href: data.href, href: data.href,
children: data.icon || data.label children: data.icon || data.label
}); });
return !isBeta ? [ if (!isBeta) return [
i > 0 && " | ", i > 0 && " | ",
link link
] : BDFDB.ReactUtils.createElement("div", { ];
else {
let button = BDFDB.ReactUtils.createElement("div", {
className: BDFDB.disCN._repocontrolsbutton, className: BDFDB.disCN._repocontrolsbutton,
children: link,
onClick: e => { onClick: e => {
if (typeof data.onClick == "function") { if (typeof data.onClick == "function") {
BDFDB.ListenerUtils.stopEvent(e); BDFDB.ListenerUtils.stopEvent(e);
data.onClick(); data.onClick();
} }
}, }
children: typeof data.label == "string" ? BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.TooltipContainer, {
text: data.label,
children: link
}) : link
}); });
return typeof data.label == "string" ? BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.TooltipContainer, {
text: data.label,
children: button
}) : button;
}
}).flat(10).filter(n => n) }).flat(10).filter(n => n)
}), }),
buttons.length && BDFDB.ReactUtils.createElement("div", { buttons.length && BDFDB.ReactUtils.createElement("div", {