This commit is contained in:
Mirco Wittrien 2019-10-24 11:00:22 +02:00
parent 0cc61d1239
commit 2db64a8045
2 changed files with 3 additions and 2 deletions

View File

@ -5596,6 +5596,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
style: this.props.style,
children: [
BDFDB.ReactUtils.createElement(LibraryComponents.Flex, {
align: LibraryComponents.Flex.Align.BASELINE,
children: [
this.props.title != null || this.props.error != null ? BDFDB.ReactUtils.createElement(LibraryComponents.Flex.Child, {
wrap: true,
@ -5608,7 +5609,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
children: this.props.title
})
}) : null,
(BDFDB.ArrayUtils.is(this.props.labelchildren) ? this.props.labelchildren : Array.of(this.props.labelchildren)).filter(n => BDFDB.ReactUtils.isValidElement(n))
(BDFDB.ArrayUtils.is(this.props.titlechildren) ? this.props.titlechildren : Array.of(this.props.titlechildren)).filter(n => BDFDB.ReactUtils.isValidElement(n))
]
}),
].concat(this.props.children).filter(n => BDFDB.ReactUtils.isValidElement(n))

File diff suppressed because one or more lines are too long