1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Fix external

This commit is contained in:
Adria Navarro 2023-10-03 15:41:00 +02:00
parent 28d5fe37de
commit 0053103974

View file

@ -185,6 +185,10 @@
const getValidOperatorsForType = filter => { const getValidOperatorsForType = filter => {
const fieldSchema = getSchema(filter) const fieldSchema = getSchema(filter)
if (!fieldSchema) {
return []
}
const type = const type =
fieldSchema.type !== FieldType.BB_REFERENCE fieldSchema.type !== FieldType.BB_REFERENCE
? field.type ? field.type