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 {
|
): Row {
|
||||||
for (let relationship of relationships) {
|
for (let relationship of relationships) {
|
||||||
const linkedTable = this.tables[relationship.tableName]
|
const linkedTable = this.tables[relationship.tableName]
|
||||||
if (!linkedTable) {
|
if (!linkedTable || !row[relationship.column]) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
const display = linkedTable.primaryDisplay
|
const display = linkedTable.primaryDisplay
|
||||||
|
|
Loading…
Reference in New Issue