aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/TimelineQuery.js
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/bug/TimelineQuery.js')
-rw-r--r--webui/src/bug/TimelineQuery.js3
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}) => (