We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea3e823 commit db6264cCopy full SHA for db6264c
packages/plugin-detail/src/RelatedList.tsx
@@ -197,7 +197,7 @@ export const RelatedList: React.FC<RelatedListProps> = ({
197
if (!objectSchema?.fields) return [];
198
const resolvedObjectName = objectName || api || '';
199
return Object.entries(objectSchema.fields)
200
- .filter(([key]) => !key.startsWith('_'))
+ .filter(([key]) => !key.startsWith('_') && key !== 'id')
201
.map(([key, def]: [string, any]) => {
202
const col: any = {
203
accessorKey: key,
0 commit comments