Tech Console improvements.

This commit is contained in:
Patrick Fic
2021-04-07 12:26:26 -07:00
parent ac4dc67b9f
commit d997d535e3
12 changed files with 120 additions and 119 deletions

View File

@@ -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) =>