diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-15 22:20:50 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-15 22:20:50 +0200 |
commit | 11b792608fadfbbc41e737b401d505ff52944907 (patch) | |
tree | cf344e906e6dde4f526a38c7c990e67446bb744f /webui/src/bug/TimelineQuery.js | |
parent | 17aa40505b58a4a9d679efb8512252397872470c (diff) | |
download | git-bug-11b792608fadfbbc41e737b401d505ff52944907.tar.gz |
webui: display status change in the timeline
Diffstat (limited to 'webui/src/bug/TimelineQuery.js')
-rw-r--r-- | webui/src/bug/TimelineQuery.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webui/src/bug/TimelineQuery.js b/webui/src/bug/TimelineQuery.js index 3d7db143..3ee4cb28 100644 --- a/webui/src/bug/TimelineQuery.js +++ b/webui/src/bug/TimelineQuery.js @@ -3,6 +3,7 @@ import gql from 'graphql-tag' import React from 'react' import { Query } from 'react-apollo' import LabelChange from './LabelChange' +import SetStatus from './SetStatus' import SetTitle from './SetTitle' import Timeline from './Timeline' import Message from './Message' @@ -17,6 +18,7 @@ const QUERY = gql` ...Comment ...LabelChange ...SetTitle + ...SetStatus } pageInfo { hasNextPage @@ -30,6 +32,7 @@ const QUERY = gql` ${Message.commentFragment} ${LabelChange.fragment} ${SetTitle.fragment} + ${SetStatus.fragment} ` const TimelineQuery = ({id}) => ( |