This commit is contained in:
Adria Navarro 2024-05-03 09:34:42 +02:00
parent 2c5e9ff784
commit d259bdbf7b
1 changed files with 1 additions and 2 deletions

View File

@ -250,7 +250,6 @@ export async function outputProcessing<T extends Row[] | Row>(
for (let row of enriched) {
row[property] = await processOutputBBReferences(
row[property],
column.type,
column.subtype
)
}
@ -261,7 +260,7 @@ export async function outputProcessing<T extends Row[] | Row>(
for (let row of enriched) {
row[property] = await processOutputBBReferences(
row[property],
column.type
column.subtype
)
}
}