Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cblanc committed Mar 6, 2024
1 parent 9808317 commit b3c722c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/models/postcode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ const joinString: string = Object.freeze(
.map((r) => {
return `
LEFT OUTER JOIN ${r.table} ${r.alt ? r.alt : ""}
ON postcodes.${r.key}=${r.table}.${r.foreignKey}
ON postcodes.${r.key}=${r.alt ? r.alt : r.table}.${r.foreignKey}
`;
})
.join(" ")
Expand Down

0 comments on commit b3c722c

Please sign in to comment.