BooleanFormatter() — supabase Function Reference
Architecture documentation for the BooleanFormatter() function in BooleanFormatter.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/grid/components/formatter/BooleanFormatter.tsx lines 6–10
export const BooleanFormatter = (p: PropsWithChildren<RenderCellProps<SupaRow, unknown>>) => {
const value = p.row[p.column.key] as boolean | null
if (value === null) return <NullValue />
return <>{value ? 'TRUE' : 'FALSE'}</>
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free