fix(ui): add thrashing to issue list for search
This commit is contained in:
parent
387cb44dd6
commit
0fbca8558d
2 changed files with 3 additions and 0 deletions
|
|
@ -118,6 +118,7 @@ export const issueOptions = [
|
|||
{ label: 'Crash', value: IssueType.CRASH },
|
||||
{ label: 'Custom', value: IssueType.CUSTOM },
|
||||
{ label: 'Error', value: IssueType.JS_EXCEPTION },
|
||||
{ label: 'Mouse Thrashing', value: IssueType.MOUSE_THRASHING }
|
||||
]
|
||||
|
||||
export const issueCategories = [
|
||||
|
|
|
|||
|
|
@ -147,6 +147,8 @@ export enum IssueType {
|
|||
CRASH = 'crash',
|
||||
CUSTOM = 'custom',
|
||||
JS_EXCEPTION = 'js_exception',
|
||||
|
||||
MOUSE_THRASHING = 'mouse_thrashing',
|
||||
}
|
||||
|
||||
export enum IssueCategory {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue