This commit is contained in:
Mirco Wittrien 2019-10-24 14:56:17 +02:00
parent 3461ac57d4
commit bd69977da3
2 changed files with 2 additions and 2 deletions

View File

@ -5409,7 +5409,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
LibraryComponents.Card = reactInitialized ? class BDFDB_Card extends LibraryModules.React.Component {
render() {
return BDFDB.ReactUtils.createElement(LibraryComponents.Flex, {
className: [this.props.className, BDFDB.disCN.hovercard].filter(n => n).join(" "),
className: [this.props.className, this.props.backdrop || this.props.backdrop === undefined ? BDFDB.disCN.hovercard : null].filter(n => n).join(" "),
direction: this.props.direction,
justify: this.props.justify,
align: this.props.align,

File diff suppressed because one or more lines are too long