Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions frontend/src/lib/components/Support/supportLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,11 @@ export const TARGET_AREA_TO_NAME = [
'data-attr': `support-form-target-area-web_analytics`,
label: 'Web analytics',
},
{
value: 'logs',
'data-attr': `support-form-target-area-logs`,
label: 'Logs',
},
],
},
]
Expand Down Expand Up @@ -316,6 +321,7 @@ export type SupportTicketTargetArea =
| 'platform_addons'
| 'max-ai'
| 'customer-analytics'
| 'logs'
export type SupportTicketSeverityLevel = keyof typeof SEVERITY_LEVEL_TO_NAME
export type SupportTicketKind = keyof typeof SUPPORT_KIND_TO_SUBJECT

Expand Down Expand Up @@ -359,6 +365,7 @@ export const URL_PATH_TO_TARGET_AREA: Record<string, SupportTicketTargetArea> =
sources: 'data_warehouse',
workflows: 'workflows',
billing: 'billing',
logs: 'logs',
}

export const SUPPORT_TICKET_TEMPLATES = {
Expand Down
Loading