aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/App.tsx
diff options
context:
space:
mode:
authorLena <lena.becker-3@mni.thm.de>2021-03-01 21:12:53 +0100
committerSascha <GlancingMind@outlook.com>2021-03-15 16:35:14 +0100
commitec8a9b20696da25bf1781dd190e7ec6a8fbf5687 (patch)
tree47dc3c4791073dbb372b02f20b78f254ba819775 /webui/src/App.tsx
parent16b176f9bf40a5fd6fb832f8858ec389826752a5 (diff)
downloadgit-bug-ec8a9b20696da25bf1781dd190e7ec6a8fbf5687.tar.gz
Backbutton to left with patch from GlancingMind, Adjusting and 404 for missing bug pages #10
Diffstat (limited to 'webui/src/App.tsx')
-rw-r--r--webui/src/App.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/webui/src/App.tsx b/webui/src/App.tsx
index 4c81913c..e0580b1d 100644
--- a/webui/src/App.tsx
+++ b/webui/src/App.tsx
@@ -13,6 +13,7 @@ export default function App() {
<Switch>
<Route path="/" exact component={ListPage} />
<Route path="/new" exact component={NewBugPage} />
+ <Route path="/404bug" exact component={NotFoundPage} />
<Route path="/bug/:id" exact component={BugPage} />
<Route component={NotFoundPage} />
</Switch>