diff --git a/datahub-web-react/src/app/ingest/source/conf/csv/csv.ts b/datahub-web-react/src/app/ingest/source/conf/csv/csv.ts index 16efae3a472ad..fb34ff9b1748b 100644 --- a/datahub-web-react/src/app/ingest/source/conf/csv/csv.ts +++ b/datahub-web-react/src/app/ingest/source/conf/csv/csv.ts @@ -5,14 +5,14 @@ const placeholderRecipe = `\ source: type: csv-enricher config: - filename: # relative path to your csv file to ingest, e.g. ./path/to/your/file.csv - array_delimiter: | - delimiter: , - write_semantics: PATCH + filename: # relative path to your csv file to ingest, e.g. ./path/to/your/file.csv + array_delimiter: | + delimiter: , + write_semantics: PATCH `; const csvConfig: SourceConfig = { - type: 'csv', + type: 'csv-enricher', placeholderRecipe, displayName: 'CSV', docsUrl: 'https://datahubproject.io/docs/generated/ingestion/sources/csv',