This commit is contained in:
Mirco Wittrien 2019-11-01 22:50:26 +01:00
parent 4eef6d4a1b
commit 340aa54464
2 changed files with 3 additions and 3 deletions

View File

@ -6083,8 +6083,8 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
}),
(BDFDB.ArrayUtils.is(this.props.labelchildren) ? this.props.labelchildren : Array.of(this.props.labelchildren)),
BDFDB.ReactUtils.createElement(LibraryComponents.Flex.Child, {
grow: this.props.basis ? 1 : 0,
shrink: 0,
grow: this.props.basis ? 0 : 1,
shrink: this.props.basis ? 0 : 1,
basis: this.props.basis,
wrap: true,
children: BDFDB.ReactUtils.createElement(childcomponent, childprops)

File diff suppressed because one or more lines are too long