Skip to content
Snippets Groups Projects
Unverified Commit da64112b authored by Kyle Doherty's avatar Kyle Doherty
Browse files

add keys

parent 24e477e2
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ const CostSelect = ({currentCost, onChange}) =>
onChange={onChange}
>
{ Object.keys(COSTS).map(cost =>
<Option value={cost}>
<Option value={cost} key={cost}>
{COSTS[cost].display_name}
</Option>
)}
......
......@@ -31,7 +31,7 @@ const StatGroup = ({ fingerprint, stats, showDescriptions }) =>
<ol className="Grid Grid--1of3">
{ stats.map(stat =>
fingerprint[stat] && (
<li className="Grid-cell p4 border-right border-bottom">
<li className="Grid-cell p4 border-right border-bottom" key={stat}>
<SimpleStat
stat={fingerprint[stat]}
showDescription={showDescriptions}
......
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