Merge pull request #175 from WebTools-NG/#94-Export-Episodes-as-well

#94 export episodes as well
This commit is contained in:
Tommy Mikkelsen 2020-09-29 23:50:59 +02:00 committed by GitHub
commit aee2ba2d6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 9 deletions

View file

@ -100,7 +100,8 @@
}
}
},
"Ok": "OK"
"Ok": "OK",
"Reload": "Reload"
},
"Modules": {
"ET": {

View file

@ -20,7 +20,7 @@
</option>
</b-form-select >
<b-button size="sm" class="my-2 my-sm-0" @click="fetchServers" variant="warning">
<b-icon icon="arrow-clockwise" aria-hidden="true"></b-icon> Reload
<b-icon icon="arrow-clockwise" aria-hidden="true"></b-icon> {{ $t("Common.Reload") }}
</b-button>
</b-nav-form>
</b-navbar-nav>

View file

@ -676,14 +676,8 @@ const excel2 = new class Excel {
else {
val = await this.postProcess( {name: name, val: val} );
}
}
// If string, put in ""
if (isNaN(val)){
str += wtconfig.get('ET.ColumnSep') + '"' + val + '"';
}
else {
str += wtconfig.get('ET.ColumnSep') + val;
}
str += wtconfig.get('ET.ColumnSep') + val;
}
// Remove first character
result = str.substr(1);