1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat(PostgreSQL): export tables

This commit is contained in:
2022-03-21 18:32:45 +01:00
parent 8f3efabb69
commit a67071e284
6 changed files with 499 additions and 6 deletions

View File

@ -190,7 +190,7 @@
:key="key"
class="form-checkbox"
>
<input v-model="options.includes[key]" type="checkbox"><i class="form-icon" /> {{ $t(`word.${key}`) }}
<input v-model="options.includes[key]" type="checkbox"><i class="form-icon" /> {{ $tc(`word.${key}`, 2) }}
</label>
<div class="h6 mt-4 mb-2">
@ -353,8 +353,10 @@ export default {
structure.forEach(feat => {
const val = customizations[this.currentWorkspace.client][feat];
if (val)
if (val) {
if (feat === 'triggerFunctions') feat = 'triggerFunction';// TODO: remove after l18n refactor
this.$set(this.options.includes, feat, true);
}
});
ipcRenderer.on('export-progress', this.updateProgress);