diff --git a/frontend/src/components/CustomComponentForAPI.js b/frontend/src/components/CustomComponentForAPI.js index 926e28ede86faabc8662e8c2609fa57961c5ae26..df4c60b699070216eb18cb842b11cee98a06881f 100644 --- a/frontend/src/components/CustomComponentForAPI.js +++ b/frontend/src/components/CustomComponentForAPI.js @@ -98,7 +98,7 @@ class CustomComponentForAPI extends Component { && successActionsWithReads .filter(action => action in prop) // general handling of all types of API reducers .some(action => prop[action].readAt !== 0) // makes sure will consider all success actions - && ["isReading", "isUpdating", "isCreating"] + && ["isReading"]//, "isUpdating", "isCreating"] Don't put those in here it may cause unwanted rerendering whole tree when saving .filter(action => action in prop) .every(action => prop[action] === false); }