lint
This commit is contained in:
parent
32f004a890
commit
f782375e12
|
@ -371,7 +371,10 @@ module External {
|
|||
const toColumn = `${linkedTable.name}.${relationship.to}`
|
||||
// this is important when working with multiple relationships
|
||||
// between the same tables, don't want to overlap/multiply the relations
|
||||
if (!relationship.through && row[fromColumn]?.toString() !== row[toColumn]?.toString()) {
|
||||
if (
|
||||
!relationship.through &&
|
||||
row[fromColumn]?.toString() !== row[toColumn]?.toString()
|
||||
) {
|
||||
continue
|
||||
}
|
||||
let linked = basicProcessing(row, linkedTable)
|
||||
|
|
Loading…
Reference in New Issue