diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-15 20:31:53 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-15 20:31:53 +0200 |
commit | 1984d4343db770fc2c8e251a81f1ab997a4c4d5e (patch) | |
tree | d60630e0d36ea24ee9eaf16653194703f4b46dd8 /webui/src/bug/BugPage.js | |
parent | 2530cee1eac225924e1119554cf475cdc46ed7dc (diff) | |
download | git-bug-1984d4343db770fc2c8e251a81f1ab997a4c4d5e.tar.gz |
webui: rework of the bug page with a timeline
Diffstat (limited to 'webui/src/bug/BugPage.js')
-rw-r--r-- | webui/src/bug/BugPage.js | 30 |
1 files changed, 0 insertions, 30 deletions
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}) => ( - <Query query={QUERY} variables={{id: match.params.id}}> - {({loading, error, data}) => { - if (loading) return <CircularProgress/> - if (error) return <p>Error.</p> - return <Bug bug={data.defaultRepository.bug}/> - }} - </Query> -) - -export default BugPage |