mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2025-02-17 03:48:25 +00:00
Merge pull request #175 from WebTools-NG/#94-Export-Episodes-as-well
#94 export episodes as well
This commit is contained in:
commit
aee2ba2d6e
3 changed files with 4 additions and 9 deletions
|
@ -100,7 +100,8 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"Ok": "OK"
|
||||
"Ok": "OK",
|
||||
"Reload": "Reload"
|
||||
},
|
||||
"Modules": {
|
||||
"ET": {
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue