Skip to content
Snippets Groups Projects
Commit c153f068 authored by juanf's avatar juanf
Browse files

SSDM-1648: Switch CSV to TSV format fixes

SVN: 33793
parent 42550454
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,7 @@ $.extend(Grid.prototype, { ...@@ -168,7 +168,7 @@ $.extend(Grid.prototype, {
if(!rowValue) { if(!rowValue) {
rowValue = ""; rowValue = "";
} else { } else {
rowValue = rowValue.replace(/\r?\n|\r/g, " "); rowValue = String(rowValue).replace(/\r?\n|\r/g, " ");
} }
rowAsArray.push(rowValue); rowAsArray.push(rowValue);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment