We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba94ed7 commit 72f7dacCopy full SHA for 72f7dac
src/prosemirror/plugins/selection.tsx
@@ -32,9 +32,7 @@ class SelectionControl {
32
33
update(view: EditorView, lastState: EditorState | null) {
34
const { state } = view;
35
- // Don't do anything if the document/selection didn't change
36
- if (lastState && lastState.doc.eq(state.doc) && lastState.selection.eq?.(state.selection))
37
- return;
+ if (lastState && lastState.selection.eq?.(state.selection)) return;
38
39
// Hide the tooltip if the selection is empty
40
if (state.selection.empty) {
0 commit comments