wwf
2025-11-18 77950e48c76f4a3b29d01831d43039caba29888a
app/components/workflow/nodes/list-operator/components/limit-config.tsx
@@ -45,7 +45,7 @@
  const handleLimitSizeChange = useCallback((size: number | string) => {
    onChange({
      ...config,
      size: Number.parseInt(size as string),
      size: parseInt(size as string),
    })
  }, [onChange, config])