Browse Source
Merge pull request #13575 from vvlladd28/improvement/csv-expor/mime-type
Change mime type for csv export file
pull/13583/head
Vladyslav Prykhodko
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
ui-ngx/src/app/shared/import-export/import-export.models.ts
|
|
@ -160,7 +160,7 @@ export const ZIP_TYPE: FileType = { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
export const CSV_TYPE: FileType = { |
|
|
export const CSV_TYPE: FileType = { |
|
|
mimeType: 'attachament/csv', |
|
|
mimeType: 'text/csv', |
|
|
extension: 'csv' |
|
|
extension: 'csv' |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|