This commit is contained in:
Adria Navarro 2024-08-30 13:44:39 +02:00
parent 00f6f84b35
commit 3f9e6c548d
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ export async function enrichSchema(
if (schema[key].type === FieldType.LINK) {
schema[key].columns = await populateRelTableSchema(
schema[key].tableId,
viewSchema[key].columns || {}
viewSchema[key]?.columns || {}
)
}
}