Quick fix for #5495 - managing when no relationships exist.
This commit is contained in:
parent
f7e5afab79
commit
77427ddaba
|
@ -330,7 +330,7 @@ module External {
|
|||
): Row {
|
||||
for (let relationship of relationships) {
|
||||
const linkedTable = this.tables[relationship.tableName]
|
||||
if (!linkedTable) {
|
||||
if (!linkedTable || !row[relationship.column]) {
|
||||
continue
|
||||
}
|
||||
const display = linkedTable.primaryDisplay
|
||||
|
|
Loading…
Reference in New Issue