mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-10-13 13:58:05 +00:00
Fix import from postgres sql end field check
This commit is contained in:
@@ -120,7 +120,7 @@ export function fromPostgres(ast, diagramDb = DB.GENERIC) {
|
||||
const endFieldId = tables[endTableId].fields.findIndex(
|
||||
(f) => f.name === endField,
|
||||
);
|
||||
if (endField === -1) return;
|
||||
if (endFieldId === -1) return;
|
||||
|
||||
const startFieldId = table.fields.findIndex(
|
||||
(f) => f.name === startField,
|
||||
@@ -190,7 +190,7 @@ export function fromPostgres(ast, diagramDb = DB.GENERIC) {
|
||||
const endFieldId = tables[endTableId].fields.findIndex(
|
||||
(f) => f.name === endField,
|
||||
);
|
||||
if (endField === -1) return;
|
||||
if (endFieldId === -1) return;
|
||||
|
||||
const startFieldId = table.fields.findIndex(
|
||||
(f) => f.name === startField,
|
||||
@@ -314,7 +314,7 @@ export function fromPostgres(ast, diagramDb = DB.GENERIC) {
|
||||
const endFieldId = tables[endTableId].fields.findIndex(
|
||||
(f) => f.name === endField,
|
||||
);
|
||||
if (endField === -1) return;
|
||||
if (endFieldId === -1) return;
|
||||
|
||||
const startFieldId = tables[startTableId].fields.findIndex(
|
||||
(f) => f.name === startField,
|
||||
|
Reference in New Issue
Block a user