FilterTable() — supabase Function Reference
Architecture documentation for the FilterTable() function in FilterTable.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Realtime/Inspector/RealtimeFilterPopover/FilterTable.tsx lines 3–24
export const FilterTable = ({
value,
schema,
onChange,
}: {
value: string
schema: string
onChange: (v: string, id: number | undefined) => void
}) => {
return (
<div className="flex flex-row gap-4 items-center">
<p className="w-[60px] flex justify-end text-sm">AND</p>
<TableSelector
selectedSchemaName={schema}
selectedTableName={value}
onSelectTable={onChange}
className="w-64"
size="small"
/>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free