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 ad4d00b0..3d7db143 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 SetTitle from './SetTitle'
import Timeline from './Timeline'
import Message from './Message'
@@ -15,6 +16,7 @@ const QUERY = gql`
...Create
...Comment
...LabelChange
+ ...SetTitle
}
pageInfo {
hasNextPage
@@ -27,6 +29,7 @@ const QUERY = gql`
${Message.createFragment}
${Message.commentFragment}
${LabelChange.fragment}
+ ${SetTitle.fragment}
`
const TimelineQuery = ({id}) => (