mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-10-20 18:24:02 +00:00
Fix import source
This commit is contained in:
@@ -102,7 +102,7 @@ export default function Modal({
|
||||
const parser = new Parser();
|
||||
let ast = null;
|
||||
try {
|
||||
ast = parser.astify(importData.src, { database: "MySQL" });
|
||||
ast = parser.astify(importSource.src, { database: "MySQL" });
|
||||
} catch (err) {
|
||||
Toast.error(
|
||||
"Could not parse the sql file. Make sure there are no syntax errors."
|
||||
@@ -111,7 +111,7 @@ export default function Modal({
|
||||
}
|
||||
|
||||
const d = astToDiagram(ast);
|
||||
if (importData.overwrite) {
|
||||
if (importSource.overwrite) {
|
||||
setTables(d.tables);
|
||||
setRelationships(d.relationships);
|
||||
setNotes([]);
|
||||
|
Reference in New Issue
Block a user