From 1984d4343db770fc2c8e251a81f1ab997a4c4d5e Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 15 Aug 2018 20:31:53 +0200 Subject: webui: rework of the bug page with a timeline --- webui/src/bug/BugPage.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 webui/src/bug/BugPage.js (limited to 'webui/src/bug/BugPage.js') diff --git a/webui/src/bug/BugPage.js b/webui/src/bug/BugPage.js deleted file mode 100644 index a91030ab..00000000 --- a/webui/src/bug/BugPage.js +++ /dev/null @@ -1,30 +0,0 @@ -import CircularProgress from '@material-ui/core/CircularProgress' -import gql from 'graphql-tag' -import React from 'react' -import { Query } from 'react-apollo' - -import Bug from './Bug' - -const QUERY = gql` - query GetBug($id: String!) { - defaultRepository { - bug(prefix: $id) { - ...Bug - } - } - } - - ${Bug.fragment} -` - -const BugPage = ({match}) => ( - - {({loading, error, data}) => { - if (loading) return - if (error) return

Error.

- return - }} -
-) - -export default BugPage -- cgit