diff --git a/openmetadata-ui/src/main/resources/ui/cypress/constants/constants.ts b/openmetadata-ui/src/main/resources/ui/cypress/constants/constants.ts index 408b3f765c2..ac49d67daab 100644 --- a/openmetadata-ui/src/main/resources/ui/cypress/constants/constants.ts +++ b/openmetadata-ui/src/main/resources/ui/cypress/constants/constants.ts @@ -888,8 +888,8 @@ export const DOMAIN_3 = { fullyQualifiedName: 'sample_superset.forecast_sales_performance', }, { - name: 'eta_predictions', - fullyQualifiedName: 'mlflow_svc.eta_predictions', + name: 'fact_sale', + fullyQualifiedName: 'sample_data.ecommerce_db.shopify.fact_sale', }, { name: 'operations_view', @@ -904,8 +904,8 @@ export const DOMAIN_3 = { fullyQualifiedName: 'sample_superset.forecast_sales_performance', }, { - name: 'eta_predictions', - fullyQualifiedName: 'mlflow_svc.eta_predictions', + name: 'fact_sale', + fullyQualifiedName: 'sample_data.ecommerce_db.shopify.fact_sale', }, { name: 'operations_view', diff --git a/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Glossary.spec.ts b/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Glossary.spec.ts index 76de6a141db..9473152107a 100644 --- a/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Glossary.spec.ts +++ b/openmetadata-ui/src/main/resources/ui/cypress/e2e/Pages/Glossary.spec.ts @@ -766,7 +766,7 @@ describe('Glossary page should work properly', { tags: 'Governance' }, () => { .click(); checkDisplayName(NEW_GLOSSARY.name); - addOwner('Aaron Johnson', GLOSSARY_OWNER_LINK_TEST_ID); + addOwner('Alex Pollard', GLOSSARY_OWNER_LINK_TEST_ID); }); it('Remove Owner', () => { @@ -775,7 +775,7 @@ describe('Glossary page should work properly', { tags: 'Governance' }, () => { .click(); checkDisplayName(NEW_GLOSSARY.name); - removeOwner('Aaron Johnson', GLOSSARY_OWNER_LINK_TEST_ID); + removeOwner('Alex Pollard', GLOSSARY_OWNER_LINK_TEST_ID); }); it('Verify and Remove Tags from Glossary', () => { diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/AsyncSelectList/AsyncSelectList.tsx b/openmetadata-ui/src/main/resources/ui/src/components/common/AsyncSelectList/AsyncSelectList.tsx index 9dea88492d2..59aad2d1877 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/common/AsyncSelectList/AsyncSelectList.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/common/AsyncSelectList/AsyncSelectList.tsx @@ -24,7 +24,14 @@ import { import { AxiosError } from 'axios'; import { debounce, isEmpty, isUndefined, pick } from 'lodash'; import { CustomTagProps } from 'rc-select/lib/BaseSelect'; -import React, { FC, useCallback, useMemo, useRef, useState } from 'react'; +import React, { + FC, + useCallback, + useEffect, + useMemo, + useRef, + useState, +} from 'react'; import { useTranslation } from 'react-i18next'; import { FQN_SEPARATOR_CHAR } from '../../../constants/char.constants'; import { TAG_START_WITH } from '../../../constants/Tag.constants'; @@ -283,6 +290,10 @@ const AsyncSelectList: FC = ({ onChange?.(selectedValues); }; + useEffect(() => { + loadOptions(''); + }, []); + return (