diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AddDataQualityTest/components/TestCaseForm.tsx b/openmetadata-ui/src/main/resources/ui/src/components/AddDataQualityTest/components/TestCaseForm.tsx index 97b24d4ed17..d8df6f7134d 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AddDataQualityTest/components/TestCaseForm.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/AddDataQualityTest/components/TestCaseForm.tsx @@ -74,6 +74,7 @@ const TestCaseForm: React.FC = ({ const isColumnFqn = dashboardType === ProfilerDashboardType.COLUMN; const [form] = Form.useForm(); const [testDefinitions, setTestDefinitions] = useState([]); + const [testDefinition, setTestDefinition] = useState({} as TestDefinition); const [selectedTestType, setSelectedTestType] = useState( initialValue?.testDefinition ); @@ -285,12 +286,18 @@ const TestCaseForm: React.FC = ({ field: t('label.column'), })}`, }, - ]}> + ]} + tooltip={testDefinition?.description}>