Skip to content
Snippets Groups Projects
Commit 992236a51e3a authored by Frank Bessou's avatar Frank Bessou :spider_web:
Browse files

fix(CWUser): add missing `key` prop to list elements

parent 03591f59a141
No related branches found
No related tags found
1 merge request!1Many little improvements
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<h1>CWUsers from {cwserver}</h1> <h1>CWUsers from {cwserver}</h1>
<ul> <ul>
{cwusers.map((cwuser) => ( {cwusers.map((cwuser) => (
<li> <li key={cwuser.login}>
<BsPersonCircle /> - {cwuser.firstname} {cwuser.surname} ( <BsPersonCircle /> - {cwuser.firstname} {cwuser.surname} (
{cwuser.login}) {cwuser.login})
</li> </li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment