fixed SQL export table name #277

This commit is contained in:
Jan Prochazka
2022-05-22 11:14:29 +02:00
parent 9ecf021199
commit 6a35107c5f
2 changed files with 7 additions and 5 deletions

View File

@@ -48,10 +48,11 @@ const jsonQuickExport = {
const sqlQuickExport = {
label: 'SQL',
extension: 'sql',
createWriter: fileName => ({
createWriter: (fileName, dataName) => ({
functionName: 'sqlDataWriter',
props: {
fileName,
dataName,
},
}),
};