Update 0BDFDB.plugin.js

This commit is contained in:
Mirco Wittrien 2020-11-11 11:07:19 +01:00
parent d55ecb00e1
commit c1d9315fda
1 changed files with 4 additions and 4 deletions

View File

@ -4448,17 +4448,17 @@ module.exports = (_ => {
let links = [].concat(this.props.links).flat(10).filter(n => n); let links = [].concat(this.props.links).flat(10).filter(n => n);
let buttons = [].concat(this.props.buttons).flat(10).filter(n => n); let buttons = [].concat(this.props.buttons).flat(10).filter(n => n);
let meta = [ let meta = [
" v", !isBeta && " v",
BDFDB.ReactUtils.createElement("span", { BDFDB.ReactUtils.createElement("span", {
className: BDFDB.disCN._repoversion, className: BDFDB.disCN._repoversion,
children: this.props.data.version children: isBeta ? `v${this.props.data.version}` : this.props.data.version
}), }),
" by ", " by ",
BDFDB.ReactUtils.createElement("span", { BDFDB.ReactUtils.createElement("span", {
className: BDFDB.disCN._repoauthor, className: BDFDB.disCN._repoauthor,
children: this.props.data.author children: this.props.data.author
}) })
]; ].filter(n => n);
return !BDFDB.ObjectUtils.is(this.props.data) ? null : BDFDB.ReactUtils.createElement("div", { return !BDFDB.ObjectUtils.is(this.props.data) ? null : BDFDB.ReactUtils.createElement("div", {
className: BDFDB.DOMUtils.formatClassName(BDFDB.disCN._repoentry, this.props.className, BDFDB.disCN._repocard, BDFDB.disCN._reposettingsclosed, BDFDB.disCN._repocheckboxitem), className: BDFDB.DOMUtils.formatClassName(BDFDB.disCN._repoentry, this.props.className, BDFDB.disCN._repocard, BDFDB.disCN._reposettingsclosed, BDFDB.disCN._repocheckboxitem),
children: [ children: [
@ -4492,7 +4492,7 @@ module.exports = (_ => {
className: BDFDB.disCN._repodescriptionwrap, className: BDFDB.disCN._repodescriptionwrap,
children: BDFDB.ReactUtils.createElement("div", { children: BDFDB.ReactUtils.createElement("div", {
className: BDFDB.disCN._repodescription, className: BDFDB.disCN._repodescription,
children: this.props.data.description children: this.props.data.description && BDFDB.ReactUtils.elementToReact(BDFDB.DOMUtils.createElement(this.props.data.description))
}) })
}), }),
(links.length || buttons.length) && BDFDB.ReactUtils.createElement("div", { (links.length || buttons.length) && BDFDB.ReactUtils.createElement("div", {