Fix import source

This commit is contained in:
1ilit 2024-04-06 08:22:23 +03:00
parent 173b02daa2
commit 0ec280b821

View File

@ -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([]);