And I found the defaultTripleClick cause this issue:
prosemirror-view/src/input.ts:259
Should change if(node.inlineContent)
to if(node.inlineContent && node.content.size)
?
And I found the defaultTripleClick cause this issue:
prosemirror-view/src/input.ts:259
Should change if(node.inlineContent)
to if(node.inlineContent && node.content.size)
?
This patch should avoid this effect.
thx, It’s works.