diff options
author | Lena <lena.becker-3@mni.thm.de> | 2021-03-01 21:12:53 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-15 16:35:14 +0100 |
commit | ec8a9b20696da25bf1781dd190e7ec6a8fbf5687 (patch) | |
tree | 47dc3c4791073dbb372b02f20b78f254ba819775 /webui/src/App.tsx | |
parent | 16b176f9bf40a5fd6fb832f8858ec389826752a5 (diff) | |
download | git-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.tsx | 1 |
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> |