Replies: 1 comment 2 replies
-
@taschetto |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! I'm consuming a JSON-API endpoint. It returns two attributes:
data
andincluded
(JSON-API Compound Document pattern) that holds related data. Check the following example:I want to create a table in the following layout:
I'm trying using the following code to define my columns:
And I got the following error:
Error: Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.
Is there a way to consume external data inside
Cell
or it is not recommended? Does anyone know a way to achieve my goals using my raw data without the need to iterate and merge both arrays?Thanks in advance. :-)
Beta Was this translation helpful? Give feedback.
All reactions