diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-20 15:13:10 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-04-13 19:07:57 +0200 |
commit | 41e85023019bc13c06a1de2c431e0bd920e9e29a (patch) | |
tree | 95ea962e484912538f3b8611d3eb54056bbf3658 /webui/src/App.tsx | |
parent | 998ae348b10efd5af758944143b70125a98e8f86 (diff) | |
download | git-bug-41e85023019bc13c06a1de2c431e0bd920e9e29a.tar.gz |
Use profile page for each identity
Authorcomponent links to the authors profile page.
Replace pofile buglist with statistics
Diffstat (limited to 'webui/src/App.tsx')
-rw-r--r-- | webui/src/App.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/App.tsx b/webui/src/App.tsx index 0b77a892..04da655a 100644 --- a/webui/src/App.tsx +++ b/webui/src/App.tsx @@ -3,7 +3,7 @@ import { Route, Switch } from 'react-router'; import Layout from './components/Header'; import BugPage from './pages/bug'; -import IdentityPage from './pages/identity/Identity'; +import IdentityPage from './pages/identity'; import ListPage from './pages/list'; import NewBugPage from './pages/new/NewBugPage'; import NotFoundPage from './pages/notfound/NotFoundPage'; @@ -15,7 +15,7 @@ export default function App() { <Route path="/" exact component={ListPage} /> <Route path="/new" exact component={NewBugPage} /> <Route path="/bug/:id" exact component={BugPage} /> - <Route path="/user" exact component={IdentityPage} /> + <Route path="/user/:id" exact component={IdentityPage} /> <Route component={NotFoundPage} /> </Switch> </Layout> |