summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/DataTable.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/DataTable.vue')
-rw-r--r--webapp/src/components/DataTable.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/webapp/src/components/DataTable.vue b/webapp/src/components/DataTable.vue
index 69656ed..eade3fc 100644
--- a/webapp/src/components/DataTable.vue
+++ b/webapp/src/components/DataTable.vue
@@ -462,6 +462,7 @@ export default {
let rowString = ''
for (let i in keys) {
let value = row.data[keys[i]]
+ if (typeof value === 'string' && value.indexOf(',') !== -1) value = '"' + value + '"'
if (value) rowString += value
if (i < topIndex) rowString += ','
}