AgGrid
by default modifies underlying row data when inline editing is done.
This breaks "immutability rules", as my model is stored in redux. As I'm using immer
, I am also getting
Cannot assign to read only property 'version' of object '#'
How can I prevent AgGrid
from automatically submitting values to the model. I want to manually dispatch an action to the store that will make the changes.