You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you have a form that contains a textarea there's an issue with the CSV exporter if a submission includes a line break (return/enter) in the textarea. It causes the submission to go to a new row at the line break.
I'm not sure if CSV supports a line break, so the best possible solution that I can think of is to update this module to convert a line break into a space before serving up the file.
Steps to reproduce:
Create a form with a textarea
Enter a submission, and have the textarea contain multiple lines (using enter/return to go to a new line)
Export submissions as a CSV
The text was updated successfully, but these errors were encountered:
When you have a form that contains a textarea there's an issue with the CSV exporter if a submission includes a line break (return/enter) in the textarea. It causes the submission to go to a new row at the line break.
I'm not sure if CSV supports a line break, so the best possible solution that I can think of is to update this module to convert a line break into a space before serving up the file.
Steps to reproduce:
The text was updated successfully, but these errors were encountered: