diff options
author | Michael Muré <batolettre@gmail.com> | 2019-08-31 13:44:40 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-08-31 13:44:40 +0200 |
commit | 0020e608935882fab0318a0e0946b47f47f14c95 (patch) | |
tree | 2de7c96ac83e870bbbdf3f46b04ef035115a021f /webui | |
parent | c56801b7df45d61f41eba48633dc4e329d2ff424 (diff) | |
download | git-bug-0020e608935882fab0318a0e0946b47f47f14c95.tar.gz |
webui: fix a missing key
Diffstat (limited to 'webui')
-rw-r--r-- | webui/src/bug/Bug.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/bug/Bug.js b/webui/src/bug/Bug.js index ff57dfa9..d29cb5a7 100644 --- a/webui/src/bug/Bug.js +++ b/webui/src/bug/Bug.js @@ -73,7 +73,7 @@ function Bug({ bug }) { <Typography variant={'subheading'}>Labels</Typography> <ul className={classes.labelList}> {bug.labels.map(l => ( - <li className={classes.label}> + <li className={classes.label} key={l.name}> <Label label={l} key={l.name} /> </li> ))} |