1
0
Fork 0
mirror of synced 2024-09-10 14:35:47 +12:00

Fix deletions

This commit is contained in:
Adria Navarro 2023-09-15 13:47:08 +02:00
parent 385989eca4
commit 29eaeacc4c

View file

@ -44,6 +44,10 @@ export async function processOutputBBReferences(
value: string, value: string,
subtype: FieldSubtype subtype: FieldSubtype
) { ) {
if (typeof value !== "string") {
return value
}
const result = [] const result = []
switch (subtype) { switch (subtype) {