diff --git a/public/locales/en.json b/public/locales/en.json
index c37b1f4..076e478 100644
--- a/public/locales/en.json
+++ b/public/locales/en.json
@@ -218,7 +218,8 @@
"SortTitleNull": "Default \"Sort Title\" to \"Title\", if empty",
"AutoXLSCol": "Autosize column (xlsx only)",
"AutoXLSRow": "Autosize row (xlsx only)",
- "NotAvailIndicator": "What to use if a field can't be found"
+ "NotAvailIndicator": "What to use if a field can't be found",
+ "Delimiter": "Delimiter to use with a text based field"
},
"LevelInfo": "Export level determines which data are going to be exported.",
"ExportLevel": "Export Level",
diff --git a/src/components/modules/ExportTools/Export.vue b/src/components/modules/ExportTools/Export.vue
index 0314253..539767a 100644
--- a/src/components/modules/ExportTools/Export.vue
+++ b/src/components/modules/ExportTools/Export.vue
@@ -123,10 +123,6 @@
},
selectedServerAddressUpdateInProgress: async function(){
this.selLibraryWait = false;
- },
- statusMsg: async function(){
- console.log('Ged Watch for statusMsg: ' + this.statusMsg())
- this.statusMsg();
}
},
created() {
diff --git a/src/components/modules/ExportTools/Settings/settings.vue b/src/components/modules/ExportTools/Settings/settings.vue
index 0a2594d..0fdd693 100644
--- a/src/components/modules/ExportTools/Settings/settings.vue
+++ b/src/components/modules/ExportTools/Settings/settings.vue
@@ -14,6 +14,9 @@
+
+
+
@@ -57,6 +60,7 @@
return {
outDirVal: wtconfig.get('ET.OutPath', i18n.t('Modules.ET.Settings.SelectOutDir')),
ArraySep: wtconfig.get('ET.ArraySep'),
+ TextSep: wtconfig.get('ET.TextSep', '"'),
NotAvailIndicator: wtconfig.get('ET.NotAvail', 'N/A'),
ColumnSep: '',
TimeOut: wtconfig.get('PMS.TimeOut'),
@@ -123,6 +127,9 @@
setArraySep: function(){
wtconfig.set('ET.ArraySep', this.ArraySep)
},
+ setTextSep: function(){
+ wtconfig.set('ET.TextSep', this.TextSep)
+ },
setNotAvailIndicator: function(){
wtconfig.set('ET.NotAvail', this.NotAvailIndicator)
},