aboutsummaryrefslogtreecommitdiffstats
path: root/return-404-page.patch
diff options
context:
space:
mode:
Diffstat (limited to 'return-404-page.patch')
-rw-r--r--return-404-page.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/return-404-page.patch b/return-404-page.patch
new file mode 100644
index 00000000..e512d622
--- /dev/null
+++ b/return-404-page.patch
@@ -0,0 +1,37 @@
+diff --git a/webui/src/App.tsx b/webui/src/App.tsx
+index 3e8f71e..4fd0993 100644
+--- a/webui/src/App.tsx
++++ b/webui/src/App.tsx
+@@ -11,7 +11,6 @@ export default function App() {
+ <Layout>
+ <Switch>
+ <Route path="/" exact component={ListPage} />
+- <Route path="/404bug" exact component={NotFoundPage} />
+ <Route path="/bug/:id" exact component={BugPage} />
+ <Route component={NotFoundPage} />
+ </Switch>
+diff --git a/webui/src/pages/bug/BugQuery.tsx b/webui/src/pages/bug/BugQuery.tsx
+index ade64e9..5d459c4 100644
+--- a/webui/src/pages/bug/BugQuery.tsx
++++ b/webui/src/pages/bug/BugQuery.tsx
+@@ -1,8 +1,10 @@
+ import React from 'react';
+-import { Redirect, RouteComponentProps } from 'react-router-dom';
++import { RouteComponentProps } from 'react-router-dom';
+
+ import CircularProgress from '@material-ui/core/CircularProgress';
+
++import NotFoundPage from '../notfound/NotFoundPage';
++
+ import Bug from './Bug';
+ import { useGetBugQuery } from './BugQuery.generated';
+
+@@ -15,7 +17,7 @@ const BugQuery: React.FC<Props> = ({ match }: Props) => {
+ variables: { id: match.params.id },
+ });
+ if (loading) return <CircularProgress />;
+- if (!data?.repository?.bug) return <Redirect to="/404bug" />;
++ if (!data?.repository?.bug) return <NotFoundPage />;
+ if (error) return <p>Error: {error}</p>;
+ return <Bug bug={data.repository.bug} />;
+ };