From b316095800aad6cb3cf78ae057d3dbf66734e9a5 Mon Sep 17 00:00:00 2001 From: Jake Rosenberg Date: Thu, 3 Aug 2023 13:42:13 -0500 Subject: [PATCH] add arecibo data to ticket categories (#287) Co-authored-by: Jake Rosenberg --- apps/tup-cms/src/apps/portal/apps.py | 1 + .../src/tickets/TicketCreateModal/TicketCreateForm.tsx | 1 + libs/tup-components/src/tickets/index.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/apps/tup-cms/src/apps/portal/apps.py b/apps/tup-cms/src/apps/portal/apps.py index f10ea1175..f669ed6a5 100644 --- a/apps/tup-cms/src/apps/portal/apps.py +++ b/apps/tup-cms/src/apps/portal/apps.py @@ -20,6 +20,7 @@ "Login/Authentication Issue": "Accounting", "Running Jobs or Using TACC Resources": "High Performance Computing", "Security Incident": "NSO", + "Arecibo Data": "High Performance Computing", "Other": "High Performance Computing" } diff --git a/libs/tup-components/src/tickets/TicketCreateModal/TicketCreateForm.tsx b/libs/tup-components/src/tickets/TicketCreateModal/TicketCreateForm.tsx index 22a1a95b9..cb31e8800 100644 --- a/libs/tup-components/src/tickets/TicketCreateModal/TicketCreateForm.tsx +++ b/libs/tup-components/src/tickets/TicketCreateModal/TicketCreateForm.tsx @@ -96,6 +96,7 @@ export const TicketCreateForm: React.FC = () => { + diff --git a/libs/tup-components/src/tickets/index.ts b/libs/tup-components/src/tickets/index.ts index 33dcb9bea..b98957010 100644 --- a/libs/tup-components/src/tickets/index.ts +++ b/libs/tup-components/src/tickets/index.ts @@ -9,6 +9,7 @@ export const QUEUE_MAP = { 'Multi-factor Authentication': 'MFA', 'Data Analytics or Storage Resources': 'Data Intensive Computing', 'Running Jobs or Using TACC Resources': 'High Performance Computing', + 'Arecibo Data': 'High Performance Computing', 'Security Incident': 'NSO', Other: 'High Performance Computing', };