mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-03 03:59:12 +00:00
Refactor search options in SearchClassBase (#14982)
This commit is contained in:
parent
9a4a9df836
commit
7c497825fe
@ -99,27 +99,29 @@ class SearchClassBase {
|
||||
};
|
||||
}
|
||||
|
||||
public getGlobalSearchOptions = () => [
|
||||
{ value: '', label: i18n.t('label.all') },
|
||||
{ value: SearchIndex.TABLE, label: i18n.t('label.table') },
|
||||
{ value: SearchIndex.TOPIC, label: i18n.t('label.topic') },
|
||||
{ value: SearchIndex.DASHBOARD, label: i18n.t('label.dashboard') },
|
||||
{ value: SearchIndex.PIPELINE, label: i18n.t('label.pipeline') },
|
||||
{ value: SearchIndex.MLMODEL, label: i18n.t('label.ml-model') },
|
||||
{ value: SearchIndex.CONTAINER, label: i18n.t('label.container') },
|
||||
{
|
||||
value: SearchIndex.STORED_PROCEDURE,
|
||||
label: i18n.t('label.stored-procedure'),
|
||||
},
|
||||
{
|
||||
value: SearchIndex.DASHBOARD_DATA_MODEL,
|
||||
label: i18n.t('label.data-model'),
|
||||
},
|
||||
{ value: SearchIndex.GLOSSARY, label: i18n.t('label.glossary') },
|
||||
{ value: SearchIndex.TAG, label: i18n.t('label.tag') },
|
||||
{ value: SearchIndex.SEARCH_INDEX, label: i18n.t('label.search-index') },
|
||||
{ value: SearchIndex.DATA_PRODUCT, label: i18n.t('label.data-product') },
|
||||
];
|
||||
public getGlobalSearchOptions() {
|
||||
return [
|
||||
{ value: '', label: i18n.t('label.all') },
|
||||
{ value: SearchIndex.TABLE, label: i18n.t('label.table') },
|
||||
{ value: SearchIndex.TOPIC, label: i18n.t('label.topic') },
|
||||
{ value: SearchIndex.DASHBOARD, label: i18n.t('label.dashboard') },
|
||||
{ value: SearchIndex.PIPELINE, label: i18n.t('label.pipeline') },
|
||||
{ value: SearchIndex.MLMODEL, label: i18n.t('label.ml-model') },
|
||||
{ value: SearchIndex.CONTAINER, label: i18n.t('label.container') },
|
||||
{
|
||||
value: SearchIndex.STORED_PROCEDURE,
|
||||
label: i18n.t('label.stored-procedure'),
|
||||
},
|
||||
{
|
||||
value: SearchIndex.DASHBOARD_DATA_MODEL,
|
||||
label: i18n.t('label.data-model'),
|
||||
},
|
||||
{ value: SearchIndex.GLOSSARY, label: i18n.t('label.glossary') },
|
||||
{ value: SearchIndex.TAG, label: i18n.t('label.tag') },
|
||||
{ value: SearchIndex.SEARCH_INDEX, label: i18n.t('label.search-index') },
|
||||
{ value: SearchIndex.DATA_PRODUCT, label: i18n.t('label.data-product') },
|
||||
];
|
||||
}
|
||||
|
||||
public getTabsInfo(): Record<ExploreSearchIndex, TabsInfoData> {
|
||||
return {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user