This commit is contained in:
Adria Navarro 2024-05-02 12:12:29 +01:00
parent c723790594
commit a0e58600bd
1 changed files with 2 additions and 1 deletions

View File

@ -89,9 +89,10 @@ export function searchInputMapping(table: Table, options: RowSearchParams) {
case FieldType.BB_REFERENCE_SINGLE:
const subtype = column.subtype
switch (subtype) {
case BBReferenceFieldSubType.USER:
case BBReferenceFieldSubType.USER: {
userColumnMapping(key, options)
break
}
default:
utils.unreachable(subtype)
}