mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-03 03:59:12 +00:00
parent
a9e193608c
commit
284ca34b18
@ -956,7 +956,7 @@ describe('Data Quality and Profiler should work properly', () => {
|
|||||||
.not('.ant-select-dropdown-hidden')
|
.not('.ant-select-dropdown-hidden')
|
||||||
.find(`[title="${profilerSetting.partitionIntervalType}"]`)
|
.find(`[title="${profilerSetting.partitionIntervalType}"]`)
|
||||||
.click();
|
.click();
|
||||||
cy.get('[data-testid="column-name"]').click();
|
cy.get('#includeColumnsProfiler_partitionColumnName').click();
|
||||||
cy.get('.ant-select-dropdown')
|
cy.get('.ant-select-dropdown')
|
||||||
.not('.ant-select-dropdown-hidden')
|
.not('.ant-select-dropdown-hidden')
|
||||||
.find(`[title="${profilerSetting.partitionColumnName}"]`)
|
.find(`[title="${profilerSetting.partitionColumnName}"]`)
|
||||||
|
|||||||
@ -305,6 +305,13 @@ const TestCaseForm: React.FC<TestCaseFormProps> = ({
|
|||||||
pattern: ENTITY_NAME_REGEX,
|
pattern: ENTITY_NAME_REGEX,
|
||||||
message: t('message.entity-name-validation'),
|
message: t('message.entity-name-validation'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
max: 256,
|
||||||
|
message: t('message.entity-maximum-size', {
|
||||||
|
entity: t('label.name'),
|
||||||
|
max: 256,
|
||||||
|
}),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
validator: (_, value) => {
|
validator: (_, value) => {
|
||||||
if (testCases.some((test) => test.name === value)) {
|
if (testCases.some((test) => test.name === value)) {
|
||||||
|
|||||||
@ -32,6 +32,7 @@ import { useHistory } from 'react-router-dom';
|
|||||||
import { ReactComponent as SettingIcon } from '../../../assets/svg/ic-settings-primery.svg';
|
import { ReactComponent as SettingIcon } from '../../../assets/svg/ic-settings-primery.svg';
|
||||||
import { PAGE_HEADERS } from '../../../constants/PageHeaders.constant';
|
import { PAGE_HEADERS } from '../../../constants/PageHeaders.constant';
|
||||||
import {
|
import {
|
||||||
|
DEFAULT_RANGE_DATA,
|
||||||
INITIAL_OPERATION_METRIC_VALUE,
|
INITIAL_OPERATION_METRIC_VALUE,
|
||||||
INITIAL_ROW_METRIC_VALUE,
|
INITIAL_ROW_METRIC_VALUE,
|
||||||
} from '../../../constants/profiler.constant';
|
} from '../../../constants/profiler.constant';
|
||||||
@ -79,7 +80,7 @@ const TableProfilerChart = ({
|
|||||||
onSettingButtonClick,
|
onSettingButtonClick,
|
||||||
isProfilingEnabled,
|
isProfilingEnabled,
|
||||||
customMetric: tableCustomMetric,
|
customMetric: tableCustomMetric,
|
||||||
dateRangeObject,
|
dateRangeObject = DEFAULT_RANGE_DATA,
|
||||||
onDateRangeChange,
|
onDateRangeChange,
|
||||||
} = useTableProfiler();
|
} = useTableProfiler();
|
||||||
|
|
||||||
|
|||||||
@ -233,6 +233,7 @@ const IncidentManagerDetailPage = () => {
|
|||||||
</Col>
|
</Col>
|
||||||
<Col className="p-x-lg" data-testid="entity-page-header" span={24}>
|
<Col className="p-x-lg" data-testid="entity-page-header" span={24}>
|
||||||
<EntityHeaderTitle
|
<EntityHeaderTitle
|
||||||
|
className="w-max-full-45"
|
||||||
displayName={testCaseData.data?.displayName}
|
displayName={testCaseData.data?.displayName}
|
||||||
icon={<TestCaseIcon className="h-9" />}
|
icon={<TestCaseIcon className="h-9" />}
|
||||||
name={testCaseData.data?.name ?? ''}
|
name={testCaseData.data?.name ?? ''}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user