I created a DynamicTable with data from Jira REST API call. Now I need to update one of the rows. What is the best way to do this?
Refresh the hole table by again calling the REST API is not be the best option, because that would require some time.
The content of the table is in a variable as an array controlled via useState. I tried to cloned the array, manipulated it and set this as new content of the useState variable, but the DynamicTable is not automatically updating.
I am using the right concept? What am I doing wrong?