Skip to content

Commit 68627d8

Browse files
k-fishadrian-codecov
authored andcommitted
fix(ourlogs): Hide project as a column until backend is fixed (#88684)
### Summary This isn't working due to a VCC problem. The test in #88564 has to pass first. #### Screenshots |![Screenshot 2025-04-03 at 11 21 50 AM](https://github.com/user-attachments/assets/1a20b84d-9ba5-4346-bfb0-b3167e43687a)| |-|
1 parent 3d981b7 commit 68627d8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

static/app/views/explore/logs/constants.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export const HiddenLogDetailFields: OurLogFieldKey[] = [
3232
OurLogKnownFieldKey.BODY,
3333
OurLogKnownFieldKey.ORGANIZATION_ID,
3434
OurLogKnownFieldKey.ITEM_TYPE,
35+
OurLogKnownFieldKey.PROJECT,
3536
];
3637

3738
const LOGS_FILTERS: FilterKeySection = {

static/app/views/explore/logs/types.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export enum OurLogKnownFieldKey {
2121
SEVERITY_TEXT = 'log.severity_text',
2222
ORGANIZATION_ID = 'organization.id',
2323
PROJECT_ID = 'project.id',
24+
PROJECT = 'project',
2425
SPAN_ID = 'span_id',
2526
PARENT_SPAN_ID = 'sentry.trace.parent_span_id',
2627
TIMESTAMP = 'timestamp',

0 commit comments

Comments
 (0)