diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Modals/IngestionRunDetailsModal/IngestionRunDetailsModal.tsx b/openmetadata-ui/src/main/resources/ui/src/components/Modals/IngestionRunDetailsModal/IngestionRunDetailsModal.tsx index bfd31753d2d..e7ff9742351 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/Modals/IngestionRunDetailsModal/IngestionRunDetailsModal.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/Modals/IngestionRunDetailsModal/IngestionRunDetailsModal.tsx @@ -11,7 +11,7 @@ * limitations under the License. */ -import { Button, Modal, Typography } from 'antd'; +import { Button, Col, Modal, Row, Typography } from 'antd'; import { ColumnType } from 'antd/lib/table'; import { ExpandableConfig } from 'antd/lib/table/interface'; import { startCase } from 'lodash'; @@ -87,26 +87,30 @@ function IngestionRunDetailsModal({ const expandable: ExpandableConfig = useMemo( () => ({ expandedRowRender: (record) => { - return ( - record.failures?.map((failure) => ( - - )) ?? [] - ); + return record.failures ? ( + + {record.failures.map((failure) => ( + + + + ))} + + ) : undefined; }, indentSize: 0, expandIcon: () => null, diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/TestConnection/ConnectionStepCard/connection-step-card.less b/openmetadata-ui/src/main/resources/ui/src/components/common/TestConnection/ConnectionStepCard/connection-step-card.less index f9acecf3215..6de52463b5f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/common/TestConnection/ConnectionStepCard/connection-step-card.less +++ b/openmetadata-ui/src/main/resources/ui/src/components/common/TestConnection/ConnectionStepCard/connection-step-card.less @@ -24,7 +24,6 @@ box-sizing: border-box; border: 1px solid @border-color; border-radius: 4px; - margin-top: 16px; &.success { border-color: #28a7454d; }