mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
Remove mistakenly commited patch file
This commit is contained in:
parent
833f020a9b
commit
0b3acaa321
@ -1,37 +0,0 @@
|
||||
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} />;
|
||||
};
|
Loading…
Reference in New Issue
Block a user