diff --git a/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/AddDataQualityTest/AddDataQualityTestV1.tsx b/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/AddDataQualityTest/AddDataQualityTestV1.tsx index e24e27f4653..a9d5ae0629d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/AddDataQualityTest/AddDataQualityTestV1.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/AddDataQualityTest/AddDataQualityTestV1.tsx @@ -279,10 +279,10 @@ const AddDataQualityTestV1: React.FC = ({ return ( diff --git a/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/AddDataQualityTest/components/ParameterForm.tsx b/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/AddDataQualityTest/components/ParameterForm.tsx index 97728463f55..b0bb0ceb033 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/AddDataQualityTest/components/ParameterForm.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/AddDataQualityTest/components/ParameterForm.tsx @@ -377,7 +377,7 @@ const ParameterForm: React.FC = ({ definition, table }) => { ]); const columns = table?.columns.map((column) => ({ - label: column.displayName ?? column.name, + label: getEntityName(column), value: column.name, // Check if column.name is in the combined Set to determine if it should be disabled disabled: selectedColumnsSet.has(column.name), diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/ResizablePanels/resizable-panels.less b/openmetadata-ui/src/main/resources/ui/src/components/common/ResizablePanels/resizable-panels.less index e9f3efca2e4..fcf30267303 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/common/ResizablePanels/resizable-panels.less +++ b/openmetadata-ui/src/main/resources/ui/src/components/common/ResizablePanels/resizable-panels.less @@ -212,6 +212,11 @@ h2.rotated-header { } } } +.no-right-panel-splitter { + .right-panel-splitter { + margin-left: 0; + } +} .handle-icon-horizontal { margin: 0 auto auto; diff --git a/openmetadata-ui/src/main/resources/ui/src/pages/TestSuiteIngestionPage/TestSuiteIngestionPage.tsx b/openmetadata-ui/src/main/resources/ui/src/pages/TestSuiteIngestionPage/TestSuiteIngestionPage.tsx index 84f65c1c501..72474ad696b 100644 --- a/openmetadata-ui/src/main/resources/ui/src/pages/TestSuiteIngestionPage/TestSuiteIngestionPage.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/pages/TestSuiteIngestionPage/TestSuiteIngestionPage.tsx @@ -124,10 +124,10 @@ const TestSuiteIngestionPage = () => { return (