Skip to content

Commit 9d5a8f3

Browse files
committed
feat(support): add 'logs' target area to support ticket options
1 parent 7300a2b commit 9d5a8f3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

frontend/src/lib/components/Support/supportLogic.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,11 @@ export const TARGET_AREA_TO_NAME = [
275275
'data-attr': `support-form-target-area-web_analytics`,
276276
label: 'Web analytics',
277277
},
278+
{
279+
value: 'logs',
280+
'data-attr': `support-form-target-area-logs`,
281+
label: 'Logs',
282+
},
278283
],
279284
},
280285
]
@@ -316,6 +321,7 @@ export type SupportTicketTargetArea =
316321
| 'platform_addons'
317322
| 'max-ai'
318323
| 'customer-analytics'
324+
| 'logs'
319325
export type SupportTicketSeverityLevel = keyof typeof SEVERITY_LEVEL_TO_NAME
320326
export type SupportTicketKind = keyof typeof SUPPORT_KIND_TO_SUBJECT
321327

@@ -359,6 +365,7 @@ export const URL_PATH_TO_TARGET_AREA: Record<string, SupportTicketTargetArea> =
359365
sources: 'data_warehouse',
360366
workflows: 'workflows',
361367
billing: 'billing',
368+
logs: 'logs',
362369
}
363370

364371
export const SUPPORT_TICKET_TEMPLATES = {

0 commit comments

Comments
 (0)