Fix
This commit is contained in:
parent
004e13a349
commit
63160a394b
|
@ -613,8 +613,8 @@ class GoogleSheetsIntegration implements DatasourcePlus {
|
||||||
type === FieldType.BB_REFERENCE &&
|
type === FieldType.BB_REFERENCE &&
|
||||||
subtype === BBReferenceFieldSubType.USER &&
|
subtype === BBReferenceFieldSubType.USER &&
|
||||||
constraints?.type !== "array"
|
constraints?.type !== "array"
|
||||||
if (isDeprecatedSingleUser && Array.isArray(row[key])) {
|
if (isDeprecatedSingleUser && Array.isArray(row.get(key))) {
|
||||||
row[key] = row[key][0]
|
row.set(key, row.get(key)[0])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
await row.save()
|
await row.save()
|
||||||
|
|
Loading…
Reference in New Issue