From 2dd1e7f45e67280c78712cde92fca339d5b63fc9 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Fri, 3 Sep 2021 14:49:56 +0100 Subject: [PATCH] Fixing an issue that occurs when the table name and the primary display column are the same name. --- packages/client/src/api/rows.js | 2 +- packages/server/src/db/linkedRows/index.js | 14 ++++++-------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/packages/client/src/api/rows.js b/packages/client/src/api/rows.js index 21f8ec1f98..29465b9e8f 100644 --- a/packages/client/src/api/rows.js +++ b/packages/client/src/api/rows.js @@ -121,7 +121,7 @@ export const enrichRows = async (rows, tableId) => { rows.forEach(row => { for (let key of keys) { const type = schema[key].type - if (type === "link") { + if (type === "link" && Array.isArray(row[key])) { // Enrich row a string join of relationship fields row[`${key}_text`] = row[key] diff --git a/packages/server/src/db/linkedRows/index.js b/packages/server/src/db/linkedRows/index.js index 840f6454b5..34be44336c 100644 --- a/packages/server/src/db/linkedRows/index.js +++ b/packages/server/src/db/linkedRows/index.js @@ -203,19 +203,17 @@ exports.attachFullLinkedDocs = async (ctx, table, rows) => { exports.squashLinksToPrimaryDisplay = async (appId, table, enriched) => { const db = new CouchDB(appId) // will populate this as we find them - const linkedTables = [] - for (let [column, schema] of Object.entries(table.schema)) { - if (schema.type !== FieldTypes.LINK) { - continue - } - for (let row of enriched) { - if (!row[column] || !row[column].length) { + const linkedTables = [table] + for (let row of enriched) { + // this only fetches the table if its not already in array + const rowTable = await getLinkedTable(db, row.tableId, linkedTables) + for (let [column, schema] of Object.entries(rowTable.schema)) { + if (schema.type !== FieldTypes.LINK || !Array.isArray(row[column])) { continue } const newLinks = [] for (let link of row[column]) { const linkTblId = link.tableId || getRelatedTableForField(table, column) - // this only fetches the table if its not already in array const linkedTable = await getLinkedTable(db, linkTblId, linkedTables) const obj = { _id: link._id } if (link[linkedTable.primaryDisplay]) {