fix(ui): click rage -> tap rage for mobile
This commit is contained in:
parent
0536d2cd65
commit
0c1b88777e
2 changed files with 4 additions and 4 deletions
|
|
@ -104,7 +104,7 @@ function LiveSessionList(props: Props) {
|
|||
options={sortOptions}
|
||||
onChange={onSortChange}
|
||||
value={sortOptions.find((i: any) => i.value === filter.sort) || sortOptions[0]}
|
||||
/>
|
||||
/>
|
||||
<div className="mx-2" />
|
||||
<SortOrderButton
|
||||
onChange={(state: any) => props.applyFilter({ order: state })}
|
||||
|
|
|
|||
|
|
@ -22,9 +22,9 @@ export const issues_types = [
|
|||
{ 'type': types.JS_EXCEPTION, 'visible': true, 'order': 1, 'name': 'Errors', 'icon': 'funnel/exclamation-circle' },
|
||||
{ 'type': types.BAD_REQUEST, 'visible': true, 'order': 2, 'name': 'Bad Requests', 'icon': 'funnel/file-medical-alt' },
|
||||
{ 'type': types.CLICK_RAGE, 'visible': true, 'order': 3, 'name': 'Click Rage', 'icon': 'funnel/emoji-angry' },
|
||||
{ 'type': types.CRASH, 'visible': true, 'order': 4, 'name': 'Crashes', 'icon': 'funnel/file-earmark-break' },
|
||||
{ 'type': types.MOUSE_THRASHING, 'visible': true, 'order': 5, 'name': 'Mouse Thrashing', 'icon': 'cursor-trash' },
|
||||
{ 'type': types.TAP_RAGE, 'visible': true, 'order': 6, 'name': 'Click Rage', 'icon': 'funnel/emoji-angry' },
|
||||
{ 'type': types.TAP_RAGE, 'visible': true, 'order': 4, 'name': 'Tap Rage', 'icon': 'funnel/emoji-angry' },
|
||||
{ 'type': types.CRASH, 'visible': true, 'order': 5, 'name': 'Crashes', 'icon': 'funnel/file-earmark-break' },
|
||||
{ 'type': types.MOUSE_THRASHING, 'visible': true, 'order': 6, 'name': 'Mouse Thrashing', 'icon': 'cursor-trash' },
|
||||
// { 'type': 'memory', 'visible': true, 'order': 4, 'name': 'High Memory', 'icon': 'funnel/sd-card' },
|
||||
// { 'type': 'vault', 'visible': true, 'order': 5, 'name': 'Vault', 'icon': 'safe' },
|
||||
// { 'type': 'bookmark', 'visible': true, 'order': 5, 'name': 'Bookmarks', 'icon': 'safe' },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue