Home / Function/ HttpBodyFieldSection() — supabase Function Reference

HttpBodyFieldSection() — supabase Function Reference

Architecture documentation for the HttpBodyFieldSection() function in HttpBodyFieldSection.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/studio/components/interfaces/Integrations/CronJobs/HttpBodyFieldSection.tsx lines 18–40

export const HttpBodyFieldSection = ({ form }: HttpBodyFieldSectionProps) => {
  return (
    <SheetSection>
      <FormField_Shadcn_
        control={form.control}
        name="values.httpBody"
        render={({ field }) => (
          <FormItem_Shadcn_ className="gap-1 flex flex-col">
            <FormLabel_Shadcn_>HTTP Request Body</FormLabel_Shadcn_>
            <FormControl_Shadcn_>
              <TextArea_Shadcn_
                className="h-72 rounded-none px-4 outline-none"
                value={field.value}
                onChange={field.onChange}
              />
            </FormControl_Shadcn_>
            <FormMessage_Shadcn_ />
          </FormItem_Shadcn_>
        )}
      />
    </SheetSection>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free