Skip to content

Commit 7c0f760

Browse files
committed
fix broken tests
1 parent 5b653ac commit 7c0f760

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/utils/discover/fieldRenderers.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,14 +659,14 @@ const SPECIAL_FIELDS: Record<string, SpecialField> = {
659659
},
660660
},
661661
project_id: {
662-
sortField: 'project_id',
662+
sortField: null,
663663
renderFunc: (data, baggage) => {
664664
const projectId = data.project_id;
665665
return getProjectIdLink(projectId, baggage);
666666
},
667667
},
668668
'project.id': {
669-
sortField: 'project.id',
669+
sortField: null,
670670
renderFunc: (data, baggage) => {
671671
const projectId = data['project.id'];
672672
return getProjectIdLink(projectId, baggage);

0 commit comments

Comments
 (0)