refactoring

This commit is contained in:
Philipp Kühn
2021-11-18 12:38:02 +01:00
parent 10fea3b44e
commit 7e1ca4c8bd

View File

@@ -202,7 +202,12 @@ export class NodeView<
// this is because ProseMirror cant preventDispatch on enter
// this will lead to a re-render of the node view on enter
// see: https://github.com/ueberdosis/tiptap/issues/1214
if (this.dom.contains(mutation.target) && mutation.type === 'childList' && isiOS() && this.editor.isFocused) {
if (
this.dom.contains(mutation.target)
&& mutation.type === 'childList'
&& isiOS()
&& this.editor.isFocused
) {
const changedNodes = [
...Array.from(mutation.addedNodes),
...Array.from(mutation.removedNodes),