Skip to content

Commit

Permalink
App: Add route for Schedule
Browse files Browse the repository at this point in the history
Signed-off-by: Zack Cerza <[email protected]>
  • Loading branch information
zmc authored and kamoltat committed Feb 7, 2024
1 parent b141cab commit 76630af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import Nodes from "./pages/Nodes";
import Node from "./pages/Node";
import StatsNodesLock from "./pages/StatsNodesLock";
import StatsNodesJobs from "./pages/StatsNodesJobs";
import Schedule from "./pages/Schedule";

import "./App.css";

Expand Down Expand Up @@ -47,6 +48,7 @@ function App(props: AppProps) {
<Route path="/runs/:name" element={<Run />} />
<Route path="/runs/:name/jobs/:job_id" element={<Job />} />
<Route path="/queue" element={<Queue />} />
<Route path="/schedule" element={<Schedule />} />
<Route path="/:name" element={<Run />} />
<Route path="/:name/:job_id" element={<Job />} />
</Routes>
Expand Down

0 comments on commit 76630af

Please sign in to comment.