Posts by Rodrigo Ricardo Radke • 21 points
3 posts
-
0
votes1
answer43
viewsA: Remove shadow when hovering the mouse in the Highcharts chart column
I know the Issue’s been open for a long time, but in case someone’s having this problem,: This seems to be a Highcharts problem in 3D graphics with crosshair enabled. There was an open Issue for…
-
1
votes1
answer176
viewsA: Traverse a . map() in inside . map() React jsx
You need to put the second map inside keys as well, since it will be inside a JSX element. Edit Note that the Styledtreeitem element is being closed twice, remove the self closing tag from that…
-
1
votes1
answer47
viewsA: React.js does not return data in the map() function
The problem is on the first map, you are returning the index of this.state.requests and not the index of the request being traveled. I changed the map a little to make the problem more readable.…