lib
This commit is contained in:
parent
8e95e895b0
commit
7c6900bdce
|
@ -7063,13 +7063,13 @@ var BDFDB = {
|
||||||
BDFDB.ReactUtils.createElement(LibraryComponents.Flex, {
|
BDFDB.ReactUtils.createElement(LibraryComponents.Flex, {
|
||||||
align: LibraryComponents.Flex.Align.CENTER,
|
align: LibraryComponents.Flex.Align.CENTER,
|
||||||
children: [
|
children: [
|
||||||
BDFDB.ReactUtils.createElement(LibraryComponents.Flex.Child, {
|
this.props.label ? BDFDB.ReactUtils.createElement(LibraryComponents.Flex.Child, {
|
||||||
children: BDFDB.ReactUtils.createElement(LibraryComponents.SettingsLabel, {
|
children: BDFDB.ReactUtils.createElement(LibraryComponents.SettingsLabel, {
|
||||||
mini: this.props.mini,
|
mini: this.props.mini,
|
||||||
label: this.props.label
|
label: this.props.label
|
||||||
})
|
})
|
||||||
}),
|
}) : null,
|
||||||
[this.props.labelchildren].flat().filter(n => n),
|
this.props.labelchildren,
|
||||||
BDFDB.ReactUtils.createElement(LibraryComponents.Flex.Child, {
|
BDFDB.ReactUtils.createElement(LibraryComponents.Flex.Child, {
|
||||||
grow: 0,
|
grow: 0,
|
||||||
shrink: this.props.basis ? 0 : 1,
|
shrink: this.props.basis ? 0 : 1,
|
||||||
|
@ -7077,7 +7077,7 @@ var BDFDB = {
|
||||||
wrap: true,
|
wrap: true,
|
||||||
children: BDFDB.ReactUtils.createElement(childcomponent, childprops)
|
children: BDFDB.ReactUtils.createElement(childcomponent, childprops)
|
||||||
})
|
})
|
||||||
]
|
].flat().filter(n => n)
|
||||||
}),
|
}),
|
||||||
typeof this.props.note == "string" ? BDFDB.ReactUtils.createElement(LibraryComponents.Flex.Child, {
|
typeof this.props.note == "string" ? BDFDB.ReactUtils.createElement(LibraryComponents.Flex.Child, {
|
||||||
className: BDFDB.disCN.note,
|
className: BDFDB.disCN.note,
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue