mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-07 05:53:46 +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 = () => [
|
public getGlobalSearchOptions() {
|
||||||
{ value: '', label: i18n.t('label.all') },
|
return [
|
||||||
{ value: SearchIndex.TABLE, label: i18n.t('label.table') },
|
{ value: '', label: i18n.t('label.all') },
|
||||||
{ value: SearchIndex.TOPIC, label: i18n.t('label.topic') },
|
{ value: SearchIndex.TABLE, label: i18n.t('label.table') },
|
||||||
{ value: SearchIndex.DASHBOARD, label: i18n.t('label.dashboard') },
|
{ value: SearchIndex.TOPIC, label: i18n.t('label.topic') },
|
||||||
{ value: SearchIndex.PIPELINE, label: i18n.t('label.pipeline') },
|
{ value: SearchIndex.DASHBOARD, label: i18n.t('label.dashboard') },
|
||||||
{ value: SearchIndex.MLMODEL, label: i18n.t('label.ml-model') },
|
{ value: SearchIndex.PIPELINE, label: i18n.t('label.pipeline') },
|
||||||
{ value: SearchIndex.CONTAINER, label: i18n.t('label.container') },
|
{ 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.STORED_PROCEDURE,
|
||||||
},
|
label: i18n.t('label.stored-procedure'),
|
||||||
{
|
},
|
||||||
value: SearchIndex.DASHBOARD_DATA_MODEL,
|
{
|
||||||
label: i18n.t('label.data-model'),
|
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.GLOSSARY, label: i18n.t('label.glossary') },
|
||||||
{ value: SearchIndex.SEARCH_INDEX, label: i18n.t('label.search-index') },
|
{ value: SearchIndex.TAG, label: i18n.t('label.tag') },
|
||||||
{ value: SearchIndex.DATA_PRODUCT, label: i18n.t('label.data-product') },
|
{ 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> {
|
public getTabsInfo(): Record<ExploreSearchIndex, TabsInfoData> {
|
||||||
return {
|
return {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user