You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using reducers to handle state changes. If I try to delete some row which can't be deleted, I get an error from backend. But before getting that error, the row disappears for some reason from UI. And it's not coming from my reducer where I have defined what to do in case rowDelete action. I managed to track things to ReactUpdates.js under react-dom and this part makes the row gone
In my table, I have defined deleting row like this:
I'm using reducers to handle state changes. If I try to delete some row which can't be deleted, I get an error from backend. But before getting that error, the row disappears for some reason from UI. And it's not coming from my reducer where I have defined what to do in case rowDelete action. I managed to track things to ReactUpdates.js under react-dom and this part makes the row gone
ReactReconciler.performUpdateIfNecessary(component, transaction.reconcileTransaction, updateBatchNumber);
But I have no idea why. Any ideas?
PS. After the row is gone, I receive the error from backend and display the alert.
Tried with v3.4.4 and v4.0.5
The text was updated successfully, but these errors were encountered: