fixed incidents search

This commit is contained in:
Андрей Бабушкин 2025-05-28 14:39:12 +02:00
parent 48351965b7
commit 73d291851e
2 changed files with 4 additions and 3 deletions

View file

@ -15,7 +15,7 @@ const tagIcons = {
[types.CLICK_RAGE]: <Angry size={14} />,
[types.CRASH]: <Skull size={14} />,
[types.TAP_RAGE]: <Angry size={14} />,
[types.INCIDENTS]: <MessageCircleWarning size={14} />,
[types.INCIDENT]: <MessageCircleWarning size={14} />,
} as Record<string, any>;
function SessionTags() {

View file

@ -9,7 +9,7 @@ export const types = {
MOUSE_THRASHING: 'mouse_thrashing',
TAP_RAGE: 'tap_rage',
DEAD_CLICK: 'dead_click',
INCIDENTS: 'incidents',
INCIDENT: 'incident',
} as const;
type TypeKeys = keyof typeof types;
@ -76,11 +76,12 @@ export const issues_types = [
icon: 'cursor-trash',
},
{
type: types.INCIDENTS,
type: types.INCIDENT,
visible: true,
order: 7,
name: 'Incidents',
icon: 'funnel/message-circle-warning',
// isEvent: false,
}
// { 'type': 'memory', 'visible': true, 'order': 4, 'name': 'High Memory', 'icon': 'funnel/sd-card' },
// { 'type': 'vault', 'visible': true, 'order': 5, 'name': 'Vault', 'icon': 'safe' },