Commit 7636727a0700ed50508c49a11af17c3a4e6705c9
1 parent
f689abd6
updates
Showing
1 changed file
with
1 additions
and
1 deletions
controllets/dataset-table-controllet/dataset-table-controllet.html
... | ... | @@ -434,7 +434,7 @@ |
434 | 434 | |
435 | 435 | //2nd loop will extract each column and convert it in string comma-seprated |
436 | 436 | for (var index in arrData[i]) { |
437 | - row += arrData[i][index] + ','; | |
437 | + row += '`' + arrData[i][index] + '`,'; | |
438 | 438 | } |
439 | 439 | |
440 | 440 | row.slice(0, row.length - 1); | ... | ... |