diff options
Diffstat (limited to 'webui/src/bug/Bug.js')
-rw-r--r-- | webui/src/bug/Bug.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/webui/src/bug/Bug.js b/webui/src/bug/Bug.js index 829a4af2..3e003567 100644 --- a/webui/src/bug/Bug.js +++ b/webui/src/bug/Bug.js @@ -74,7 +74,7 @@ function Bug({ bug }) { <ul className={classes.labelList}> {bug.labels.map(l => ( <li className={classes.label}> - <Label label={l} key={l} /> + <Label label={l} key={l.name} /> </li> ))} </ul> @@ -90,7 +90,14 @@ Bug.fragment = gql` humanId status title - labels + labels { + name + color { + R + G + B + } + } createdAt author { email |