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
If you mean from Json to CSV, yes we have an issue there
But {"The ""elephant"" in the room. "} is not a valid Json I think it should be {"The \"elephant\" in the room. "} when exporting to CSV will be {The "elephant" in the room. }
Please correct me if I am wrong
CSV data is not escaped correctly, a quote character (") should be escaped as a double quote("").
Example:
"The "elephant" in the room. "
Should be:
"The ""elephant"" in the room. "
It should also be un-escaped before import.
The text was updated successfully, but these errors were encountered: