Skip to content

Commit 4a49b52

Browse files
authored
Merge pull request #1069 from objectstack-ai/copilot/fix-all-ci-errors-another-one
2 parents 1394501 + db6264c commit 4a49b52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/plugin-detail/src/RelatedList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ export const RelatedList: React.FC<RelatedListProps> = ({
197197
if (!objectSchema?.fields) return [];
198198
const resolvedObjectName = objectName || api || '';
199199
return Object.entries(objectSchema.fields)
200-
.filter(([key]) => !key.startsWith('_'))
200+
.filter(([key]) => !key.startsWith('_') && key !== 'id')
201201
.map(([key, def]: [string, any]) => {
202202
const col: any = {
203203
accessorKey: key,

0 commit comments

Comments
 (0)