Skip to content

Commit 7afbfed

Browse files
committed
adjust specialfield type
1 parent 63e2dbb commit 7afbfed

File tree

1 file changed

+2
-2
lines changed
  • src/sentry/static/sentry/app/views/organizationEventsV2

1 file changed

+2
-2
lines changed

src/sentry/static/sentry/app/views/organizationEventsV2/data.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ type SpecialFieldRenderFunc = (
191191
) => React.ReactNode;
192192

193193
type SpecialField = {
194-
sortField: boolean;
194+
sortField: string | null;
195195
renderFunc: SpecialFieldRenderFunc;
196196
};
197197

@@ -261,7 +261,7 @@ export const SPECIAL_FIELDS: SpecialFields = {
261261
},
262262
},
263263
project: {
264-
sortField: false,
264+
sortField: null,
265265
renderFunc: (data, {organization}) => {
266266
const project = organization.projects.find(p => p.slug === data['project.name']);
267267
return (

0 commit comments

Comments
 (0)