diff --git a/web/app/components/workflow/nodes/llm/components/tools/max-iterations.tsx b/web/app/components/workflow/nodes/llm/components/tools/max-iterations.tsx index 3f1a4b7130..d9de3623e3 100644 --- a/web/app/components/workflow/nodes/llm/components/tools/max-iterations.tsx +++ b/web/app/components/workflow/nodes/llm/components/tools/max-iterations.tsx @@ -3,13 +3,16 @@ import { InputNumber } from '@/app/components/base/input-number' import Slider from '@/app/components/base/slider' import Tooltip from '@/app/components/base/tooltip' +import { cn } from '@/utils/classnames' + type MaxIterationsProps = { value?: number onChange?: (value: number) => void + className?: string } -const MaxIterations = ({ value = 10, onChange }: MaxIterationsProps) => { +const MaxIterations = ({ value = 10, onChange, className }: MaxIterationsProps) => { return ( -