mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-28 10:56:02 +00:00
UI : Rename Add Elastic Search Reindex button item name (#8848)
* Rename Add Elastic Search Reindex button name * changes as per comments * added localisation * changes as per comments * Fix label condition Co-authored-by: Sachin Chaurasiya <sachinchaurasiyachotey87@gmail.com>
This commit is contained in:
parent
8e57787ad4
commit
5f358c3b65
@ -262,7 +262,11 @@ const Ingestion: React.FC<IngestionProps> = ({
|
|||||||
<DropDownList
|
<DropDownList
|
||||||
horzPosRight
|
horzPosRight
|
||||||
dropDownList={types.map((type) => ({
|
dropDownList={types.map((type) => ({
|
||||||
name: `Add ${startCase(type)} Ingestion`,
|
name: `${t('label.add')} ${startCase(type)} ${
|
||||||
|
type === PipelineType.ElasticSearchReindex
|
||||||
|
? ''
|
||||||
|
: t('label.ingestion')
|
||||||
|
}`,
|
||||||
value: type,
|
value: type,
|
||||||
}))}
|
}))}
|
||||||
onSelect={(_e, value) =>
|
onSelect={(_e, value) =>
|
||||||
|
@ -309,6 +309,7 @@
|
|||||||
"server": "Server",
|
"server": "Server",
|
||||||
"feature-plural": "Features",
|
"feature-plural": "Features",
|
||||||
"detail-plural": "Details",
|
"detail-plural": "Details",
|
||||||
|
"ingestion": "Ingestion",
|
||||||
"add-workflow-ingestion": "Add {{workflow}} Ingestion",
|
"add-workflow-ingestion": "Add {{workflow}} Ingestion",
|
||||||
"clearAll": "Clear All",
|
"clearAll": "Clear All",
|
||||||
"view-less": "View less",
|
"view-less": "View less",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user