-
Notifications
You must be signed in to change notification settings - Fork 47.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why React change keys with dot dollar ? ".$" #22870
Comments
React does not set keys. Those come from your application code (or perhaps the 3rd party UI library that you're using). You can learn more about keys here: https://reactjs.org/docs/lists-and-keys.html#keys |
Hum weird ! i trying a random codesandbox on web and open debug tools ! And it also seem have keys with I'll try to investigate, but it's very weird ! |
The "3rd party code" is the |
This is the result of using |
@irinakk Haaaa oki thanks a lot for your help ! i also using this on my side, so its maybe related ! |
Can we get explanation why all keys are mutate with
![image](https://user-images.githubusercontent.com/24865815/144761791-b955ce8a-a3f2-483b-9a6a-93170f22b88d.png)
.$
by react ?so we always need a hack like this to extract key ?!
The text was updated successfully, but these errors were encountered: