Skip to content

Commit

Permalink
[fixed] missing keys in popup
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Oct 26, 2015
1 parent 0d5df79 commit e314128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Popup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class Popup extends React.Component {
return (
<div style={style} className='rbc-overlay'>
{
events.map(event =>
<EventCell {...props} event={event} selected={isSelected(event, selected)} />
events.map((event, idx) =>
<EventCell key={idx} {...props} event={event} selected={isSelected(event, selected)} />
)
}
</div>
Expand Down

0 comments on commit e314128

Please sign in to comment.