diff options
author | Michael Muré <batolettre@gmail.com> | 2018-10-07 18:27:23 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-10-07 18:27:23 +0200 |
commit | 7cb7994cdae848053487d00c1730d1e865fb8623 (patch) | |
tree | bc9be185e81479d8d3e5b0fc636daea011a64e4c /webui/src/list | |
parent | 03202fed493539c8d1fdcad7254687f951d0ca4a (diff) | |
download | git-bug-7cb7994cdae848053487d00c1730d1e865fb8623.tar.gz |
github: also pull users email
Diffstat (limited to 'webui/src/list')
-rw-r--r-- | webui/src/list/BugRow.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webui/src/list/BugRow.js b/webui/src/list/BugRow.js index 9253cc88..a045770b 100644 --- a/webui/src/list/BugRow.js +++ b/webui/src/list/BugRow.js @@ -77,7 +77,7 @@ const BugRow = ({ bug, classes }) => ( <Typography color={'textSecondary'}> {bug.humanId} opened <Date date={bug.createdAt} /> - by {bug.author.name} + by {bug.author.displayName} </Typography> </div> </TableCell> @@ -94,6 +94,7 @@ BugRow.fragment = gql` labels author { name + displayName } } `; |