diff --git a/web/app/components/workflow/nodes/agent/utils.ts b/web/app/components/workflow/nodes/agent/utils.ts index 53e656e54c..6945216853 100644 --- a/web/app/components/workflow/nodes/agent/utils.ts +++ b/web/app/components/workflow/nodes/agent/utils.ts @@ -12,6 +12,7 @@ const COMPARISON_OPERATOR_WITHOUT_VALUE = new Set([ export const getConditionOperators = (varType?: VarType): string[] => { switch (varType) { case VarType.number: + case VarType.integer: return ['=', '≠', '>', '<', '≥', '≤'] case VarType.boolean: return ['is', 'is not']