1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Fixing issue with rows not returning correctly.

This commit is contained in:
mike12345567 2021-09-02 13:31:46 +01:00
parent 811ba19558
commit d864dedba0

View file

@ -111,7 +111,7 @@ module External {
const thisRow: { [key: string]: any } = {}
// filter the row down to what is actually the row (not joined)
for (let fieldName of Object.keys(table.schema)) {
const value = row[`${table.name}.${fieldName}`]
const value = row[`${table.name}.${fieldName}`] || row[fieldName]
// all responses include "select col as table.col" so that overlaps are handled
if (value) {
thisRow[fieldName] = value