mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-05 13:50:11 +00:00
fix(redux): avoid state mutation in history redux
When updating the data of a note in the redux, the old state element gets manipulated and will be dispatched again into the state. Redux is not optimized for external state-mutations and has some weird side-effects in that case and sometimes throws an error. This commit fixes the problem by using a clone of the entry. Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
parent
84ee805c56
commit
f16b3c0fe6
1 changed files with 5 additions and 4 deletions
|
@ -43,10 +43,11 @@ export const useUpdateLocalHistoryEntry = (): void => {
|
|||
if (entry.origin === HistoryEntryOrigin.REMOTE) {
|
||||
return
|
||||
}
|
||||
entry.title = currentNoteTitle
|
||||
entry.tags = currentNoteTags
|
||||
entry.lastVisitedAt = new Date().toISOString()
|
||||
updateLocalHistoryEntry(id, entry)
|
||||
const updatedEntry = { ...entry }
|
||||
updatedEntry.title = currentNoteTitle
|
||||
updatedEntry.tags = currentNoteTags
|
||||
updatedEntry.lastVisitedAt = new Date().toISOString()
|
||||
updateLocalHistoryEntry(id, updatedEntry)
|
||||
lastNoteTitle.current = currentNoteTitle
|
||||
lastNoteTags.current = currentNoteTags
|
||||
}, [id, userExists, currentNoteTitle, currentNoteTags])
|
||||
|
|
Loading…
Reference in a new issue