|
8 | 8 | */ |
9 | 9 |
|
10 | 10 | import { |
11 | | - makeStyles, |
12 | | - Subtitle1, |
13 | | - Tab, |
14 | | - TabList, |
15 | | - Text, |
16 | | - tokens, |
| 11 | + makeStyles, |
| 12 | + Subtitle1, |
| 13 | + Tab, |
| 14 | + TabList, |
| 15 | + Text, |
| 16 | + tokens, |
17 | 17 | } from '@fluentui/react-components' |
18 | 18 | import { |
19 | | - AlertUrgent24Regular, |
20 | | - Bot24Regular, |
21 | | - Home24Regular, |
22 | | - Info24Regular, |
23 | | - TaskListLtr24Regular, |
| 19 | + AlertUrgent24Regular, |
| 20 | + Bot24Regular, |
| 21 | + Home24Regular, |
| 22 | + Info24Regular, |
| 23 | + PersonQuestionMark24Regular, |
| 24 | + TaskListLtr24Regular, |
24 | 25 | } from '@fluentui/react-icons' |
25 | 26 | import { Navigate, Route, Routes, useLocation, useNavigate } from 'react-router-dom' |
26 | 27 | import About from './components/About' |
27 | 28 | import Dashboard from './features/dashboard/Dashboard' |
28 | 29 | import OllamaChat from './features/ollama/OllamaChat' |
29 | 30 | import TaskList from './features/tasks/TaskList' |
30 | 31 | import TicketList from './features/tickets/TicketList' |
| 32 | +import TicketsWithoutAnAssignee from './features/tickets/TicketsWithoutAnAssignee' |
31 | 33 |
|
32 | 34 | const useStyles = makeStyles({ |
33 | 35 | app: { |
@@ -67,6 +69,7 @@ export default function App() { |
67 | 69 | { value: 'dashboard', label: 'Dashboard', icon: <Home24Regular />, path: '/dashboard', testId: 'tab-dashboard' }, |
68 | 70 | { value: 'tasks', label: 'Tasks', icon: <TaskListLtr24Regular />, path: '/tasks', testId: 'tab-tasks' }, |
69 | 71 | { value: 'tickets', label: 'QA Tickets', icon: <AlertUrgent24Regular />, path: '/tickets', testId: 'tab-tickets' }, |
| 72 | + { value: 'unassigned', label: 'Unassigned', icon: <PersonQuestionMark24Regular />, path: '/unassigned', testId: 'tab-unassigned' }, |
70 | 73 | { value: 'ollama', label: 'AI Chat', icon: <Bot24Regular />, path: '/ollama', testId: 'tab-ollama' }, |
71 | 74 | { value: 'about', label: 'About', icon: <Info24Regular />, path: '/about', testId: 'tab-about' }, |
72 | 75 | ] |
@@ -106,6 +109,7 @@ export default function App() { |
106 | 109 | <Route path="/dashboard" element={<Dashboard />} /> |
107 | 110 | <Route path="/tasks" element={<TaskList />} /> |
108 | 111 | <Route path="/tickets" element={<TicketList />} /> |
| 112 | + <Route path="/unassigned" element={<TicketsWithoutAnAssignee />} /> |
109 | 113 | <Route path="/ollama" element={<OllamaChat />} /> |
110 | 114 | <Route path="/about" element={<About />} /> |
111 | 115 | <Route path="*" element={<Navigate to="/dashboard" replace />} /> |
|
0 commit comments