diff options
author | Michael Muré <batolettre@gmail.com> | 2019-05-22 23:31:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-22 23:31:46 +0200 |
commit | 8c263465fbd956f2964bb7cd911b5ea5e8d5a50e (patch) | |
tree | f6ed073888a8610100f5e79aa44d8bca6a76c723 /webui/src/bug/SetStatus.js | |
parent | 6e20bf0e73862854aea0cd759a880a6b5f473880 (diff) | |
parent | 1c2ee10ce7a32df892604846279c7e199ce0ccea (diff) | |
download | git-bug-8c263465fbd956f2964bb7cd911b5ea5e8d5a50e.tar.gz git-bug-8c263465fbd956f2964bb7cd911b5ea5e8d5a50e.zip |
Merge pull request #149 from MichaelMure/sandhose/authored
graphql: Implement `Authored` whenever possible
Diffstat (limited to 'webui/src/bug/SetStatus.js')
-rw-r--r-- | webui/src/bug/SetStatus.js | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/webui/src/bug/SetStatus.js b/webui/src/bug/SetStatus.js index ab591038..eeff1a7b 100644 --- a/webui/src/bug/SetStatus.js +++ b/webui/src/bug/SetStatus.js @@ -26,14 +26,12 @@ SetStatus.fragment = gql` fragment SetStatus on TimelineItem { ... on SetStatusTimelineItem { date - author { - name - email - displayName - } + ...authored status } } + + ${Author.fragment} `; export default SetStatus; |