-
-
Notifications
You must be signed in to change notification settings - Fork 116
Conversation
@@ -47,6 +49,8 @@ var ProcessNodeDefinitions = function(React) { | |||
}); | |||
} | |||
|
|||
elementProps.key = ++index; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @lithin, since the key
property is always set, do you mind moving this up to where elementProps
is defined? So that it will look like this:
var elementProps = {
key: ++index
};
Thanks,
Mike
@mikenikles Thanks for the comment! Do you know why the tests are failing? |
@mikenikles Could you please merge this PR if you're happy with it? |
Sure thing, thanks a lot for your contribution @lithin! I will release it to npm tonight (in about 10 hours from now) |
@lithin version 0.1.2 is available in npm. Please let me know if you run into any problems. |
@mikenikles Thank you! |
Hi, |
Addressing issue #7 - adds a unique key to every node that is parsed.