SelectionDetailedRow() — supabase Function Reference
Architecture documentation for the SelectionDetailedRow() function in MessagesFormatters.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Realtime/Inspector/MessagesFormatters.tsx lines 23–50
export const SelectionDetailedRow = ({
label,
value,
valueRender,
hideCopy = false,
}: {
label: string
value: string
valueRender?: React.ReactNode
hideCopy?: boolean
}) => {
return (
<div className="grid grid-cols-12 group">
<span className="text-scale-900 text-sm col-span-4 whitespace-pre-wrap">{label}</span>
<span className="text-scale-1200 text-sm col-span-6 whitespace-pre-wrap break-all">
{valueRender ?? value}
</span>
{!hideCopy && (
<CopyButton
text={value}
className="group-hover:opacity-100 opacity-0 my-auto transition col-span-2 h-4 w-4 px-0 py-0"
type="text"
title="Copy to clipboard"
/>
)}
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free