Tech Console improvements.
This commit is contained in:
@@ -6,6 +6,7 @@ export default function LayoutFormRow({
|
||||
header,
|
||||
children,
|
||||
grow = false,
|
||||
noDivider = false,
|
||||
...restProps
|
||||
}) {
|
||||
if (!!!children.length) {
|
||||
@@ -44,9 +45,11 @@ export default function LayoutFormRow({
|
||||
//{header ? <Typography.Title level={4}>{header}</Typography.Title> : null}
|
||||
return (
|
||||
<div className="imex-form-row" {...restProps}>
|
||||
<Divider orientation="left" type="horizontal">
|
||||
{header}
|
||||
</Divider>
|
||||
{!noDivider && (
|
||||
<Divider orientation="left" type="horizontal">
|
||||
{header}
|
||||
</Divider>
|
||||
)}
|
||||
<Row {...rowGutter}>
|
||||
{children.map(
|
||||
(c, idx) =>
|
||||
|
||||
Reference in New Issue
Block a user