Fixes: Multiline blockquotes collapse

This commit is contained in:
Tom Moor
2019-01-27 22:43:40 +00:00
parent 476bab9333
commit c2e58898d8
3 changed files with 9 additions and 8 deletions

View File

@ -21,6 +21,7 @@ export default [
if (node.object !== 'block') return false;
if (node.type !== 'paragraph') return false;
if (node.text !== '') return false;
if (editor.value.document.getDepth(node.key) !== 1) return false;
return true;
},
}),