1
0
Fork 0
mirror of synced 2024-09-10 06:26:02 +12:00

Remove composite types

This commit is contained in:
Adria Navarro 2023-10-04 14:49:34 +02:00
parent 17df64c588
commit 583721ac47

View file

@ -127,14 +127,12 @@ export const FIELDS = {
type: FieldType.BB_REFERENCE, type: FieldType.BB_REFERENCE,
subtype: FieldSubtype.USER, subtype: FieldSubtype.USER,
icon: "User", icon: "User",
compositeType: `${FieldType.BB_REFERENCE}_${FieldSubtype.USER}`, // Used for working with the subtype on CreateEditColumn as is it was a primary type
}, },
USERS: { USERS: {
name: "Users", name: "Users",
type: FieldType.BB_REFERENCE, type: FieldType.BB_REFERENCE,
subtype: FieldSubtype.USERS, subtype: FieldSubtype.USERS,
icon: "User", icon: "User",
compositeType: `${FieldType.BB_REFERENCE}_${FieldSubtype.USERS}`,
}, },
} }