fix search index value for search and data product (#13441)

This commit is contained in:
Ashish Gupta 2023-10-05 15:25:03 +05:30 committed by GitHub
parent 0090286924
commit 783f8e3c33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ const props = {
dashboard_data_model_search_index: 0,
glossary_term_search_index: 0,
tag_search_index: 10,
search_entity_index: 9,
search_entity_search_index: 9,
},
onChangeAdvancedSearchQuickFilters: onChangeAdvancedSearchQuickFilters,
searchIndex: SearchIndex.TABLE as ExploreSearchIndex,

View File

@ -34,8 +34,8 @@ export enum SearchIndex {
ML_MODEL_SERVICE = 'mlmodel_service_search_index',
STORAGE_SERVICE = 'storage_service_search_index',
DOMAIN = 'domain_search_index',
SEARCH_INDEX = 'search_entity_index',
SEARCH_INDEX = 'search_entity_search_index',
STORED_PROCEDURE = 'stored_procedure_search_index',
DASHBOARD_DATA_MODEL = 'dashboard_data_model_search_index',
DATA_PRODUCT = 'data_products_search_index',
DATA_PRODUCT = 'data_product_search_index',
}