Skip to content

Commit

Permalink
[frontend] fix operator for enumerated types
Browse files Browse the repository at this point in the history
  • Loading branch information
savacano28 committed Sep 27, 2024
1 parent cd751bf commit 6b85973
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const availableOperators = (propertySchema: PropertySchemaDTO) => {
return ['contains', 'not_contains', 'empty', 'not_empty'];
}
// Array
if (propertySchema.schema_property_values || propertySchema.schema_property_type_array) {
if (propertySchema.schema_property_type_array) {
return ['contains', 'not_contains', 'empty', 'not_empty'];
}
return [
Expand Down

0 comments on commit 6b85973

Please sign in to comment.