preserve selection and history between room changes and refreshes
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
1c24f1fd5a
commit
cbe5944ff0
|
@ -32,7 +32,12 @@ class MessageComposerStore {
|
||||||
|
|
||||||
setEditorState(roomId: string, editorState: Value, richText: boolean) {
|
setEditorState(roomId: string, editorState: Value, richText: boolean) {
|
||||||
localStorage.setItem(this._getKey(roomId), JSON.stringify({
|
localStorage.setItem(this._getKey(roomId), JSON.stringify({
|
||||||
editor_state: editorState,
|
editor_state: editorState.toJSON({
|
||||||
|
preserveSelection: true,
|
||||||
|
preserveHistory: true,
|
||||||
|
// XXX: this seems like a workaround for selection.isSet being based on anchorKey instead of anchorPath
|
||||||
|
preserveKeys: true,
|
||||||
|
}),
|
||||||
rich_text: richText,
|
rich_text: richText,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue