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

fix(MySQL): exception exporting empty procedures/functions

This commit is contained in:
2022-03-12 10:37:40 +01:00
parent f0d368e3e3
commit ee415da127
2 changed files with 15 additions and 11 deletions

View File

@ -207,12 +207,14 @@ export default {
},
hideExportSchemaModal () {
this.isExportSchemaModal = false;
this.closeContext();
},
showImportSchemaModal () {
this.isImportSchemaModal = true;
},
hideImportSchemaModal () {
this.isImportSchemaModal = false;
this.closeContext();
},
async initImport () {
const result = await Application.showOpenDialog({ properties: ['openFile'], filters: [{ name: 'SQL', extensions: ['sql'] }] });