diff options
Diffstat (limited to 'webui/src/bug/SetTitle.js')
-rw-r--r-- | webui/src/bug/SetTitle.js | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/webui/src/bug/SetTitle.js b/webui/src/bug/SetTitle.js index d9a09ad5..9ba5a76e 100644 --- a/webui/src/bug/SetTitle.js +++ b/webui/src/bug/SetTitle.js @@ -32,15 +32,13 @@ SetTitle.fragment = gql` fragment SetTitle on TimelineItem { ... on SetTitleTimelineItem { date - author { - name - email - displayName - } + ...authored title was } } + + ${Author.fragment} `; export default SetTitle; |