fix(filter-types): standardize SLOW_PAGE_LOAD enum value
Change SLOW_PAGE_LOAD enum string value from camelCase 'slow_pageLoad' to snake_case 'slow_page_load' to maintain consistent naming convention across all enum values. Signed-off-by: Shekar Siri <sshekarsiri@gmail.com>
This commit is contained in:
parent
f168f90f10
commit
ce2a65f276
1 changed files with 1 additions and 1 deletions
|
|
@ -165,7 +165,7 @@ export enum IssueType {
|
|||
MEMORY = 'memory',
|
||||
CPU = 'cpu',
|
||||
SLOW_RESOURCE = 'slow_resource',
|
||||
SLOW_PAGE_LOAD = 'slow_pageLoad',
|
||||
SLOW_PAGE_LOAD = 'slow_page_load',
|
||||
CRASH = 'crash',
|
||||
CUSTOM = 'custom',
|
||||
JS_EXCEPTION = 'js_exception',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue