fix(ui): use correct docs link for csv enricher (#11917)

This commit is contained in:
Tim 2024-11-22 19:34:39 +01:00 committed by GitHub
parent c3f9a9206d
commit 970453e584
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -284,7 +284,7 @@
"name": "csv-enricher",
"displayName": "CSV",
"description": "Import metadata from a formatted CSV.",
"docsUrl": "https://datahubproject.io/docs/generated/ingestion/sources/csv'",
"docsUrl": "https://datahubproject.io/docs/generated/ingestion/sources/csv-enricher",
"recipe": "source: \n type: csv-enricher \n config: \n # URL of your csv file to ingest \n filename: \n array_delimiter: '|' \n delimiter: ',' \n write_semantics: PATCH"
},
{

View File

@ -15,7 +15,7 @@ const csvConfig: SourceConfig = {
type: 'csv-enricher',
placeholderRecipe,
displayName: 'CSV',
docsUrl: 'https://datahubproject.io/docs/generated/ingestion/sources/csv',
docsUrl: 'https://datahubproject.io/docs/generated/ingestion/sources/csv-enricher',
logoUrl: csvLogo,
};