Skip to content

Commit ee0db41

Browse files
authored
feat(search): added subtitle to metric_issue in issue.type (#96779)
1 parent f0a4296 commit ee0db41

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

static/app/types/group.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@ export enum IssueTitle {
209209
REPLAY_RAGE_CLICK = 'Rage Click Detected',
210210
REPLAY_HYDRATION_ERROR = 'Hydration Error Detected',
211211

212+
// Metric Issues
213+
METRIC_ISSUE = 'Issue Detected by Metric Monitor',
214+
212215
QUERY_INJECTION_VULNERABILITY = 'Potential Query Injection Vulnerability',
213216
}
214217

@@ -240,6 +243,8 @@ export const ISSUE_TYPE_TO_ISSUE_TITLE = {
240243

241244
replay_click_rage: IssueTitle.REPLAY_RAGE_CLICK,
242245
replay_hydration_error: IssueTitle.REPLAY_HYDRATION_ERROR,
246+
247+
metric_issue: IssueTitle.METRIC_ISSUE,
243248
};
244249

245250
export function getIssueTitleFromType(issueType: string): IssueTitle | undefined {

0 commit comments

Comments
 (0)