Add key to genWindow context menu nodes

This commit is contained in:
Jordan Eldredge 2018-04-25 20:05:55 -07:00
parent 5e99ee46fa
commit db956cce6b

View file

@ -70,6 +70,7 @@ const MainContextMenu = props => (
/>
{Object.keys(props.genWindows).map(i => (
<Node
key={i}
label={props.genWindows[i].title}
checked={props.genWindows[i].open}
onClick={() => props.toggleGenWindow(i)}