We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63e2dbb commit 7afbfedCopy full SHA for 7afbfed
src/sentry/static/sentry/app/views/organizationEventsV2/data.tsx
@@ -191,7 +191,7 @@ type SpecialFieldRenderFunc = (
191
) => React.ReactNode;
192
193
type SpecialField = {
194
- sortField: boolean;
+ sortField: string | null;
195
renderFunc: SpecialFieldRenderFunc;
196
};
197
@@ -261,7 +261,7 @@ export const SPECIAL_FIELDS: SpecialFields = {
261
},
262
263
project: {
264
- sortField: false,
+ sortField: null,
265
renderFunc: (data, {organization}) => {
266
const project = organization.projects.find(p => p.slug === data['project.name']);
267
return (
0 commit comments