-
Notifications
You must be signed in to change notification settings - Fork 915
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correct the mime-type of exported CSVs #792
Correct the mime-type of exported CSVs #792
Conversation
✅ DCO Check Passed 2e49297 |
Thanks for doing this! NIT: Everything looks great! But can you actually add more to the git description to have the description you have in the PR. It will helpful for people when using git tools if it had more information. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. One comment.
Blobs representing CSV content are generated on the browser which are then exported as downloadables. The mime-types were incorrectly set to text/plain in a few places. This commit changes the mime-type to be text/csv. Issues Resolved opensearch-project#640 Signed-off-by: Miki <[email protected]>
2e49297
to
a2de1f9
Compare
✅ DCO Check Passed a2de1f9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you!
Blobs representing CSV content are generated on the browser which are then exported as downloadables. The mime-types were incorrectly set to text/plain in a few places. This commit changes the mime-type to be text/csv. Issues Resolved opensearch-project#640 Signed-off-by: Miki <[email protected]>
Blobs representing CSV content are generated on the browser which are then exported as downloadables. The mime-types were incorrectly set to text/plain in a few places. This commit changes the mime-type to be text/csv. Issues Resolved #640 Signed-off-by: Miki <[email protected]>
Signed-off-by: Miki [email protected]
Description
Blobs representing CSV content are generated on the browser which are then exported as downloadables. The mime-types were incorrectly set to
text/plain
in a few places. This commit changes the mime-type to betext/csv
.Issues Resolved
#640
Check List