From: Dan Brown Date: Fri, 7 Jan 2022 21:56:04 +0000 (+0000) Subject: Fixed issue with new nodes being callouts X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/47c3d4fc0f9aa3b0c8f9b03ded0048e832eab61b Fixed issue with new nodes being callouts --- diff --git a/resources/js/editor/schema.js b/resources/js/editor/schema.js index 7c6a11cb9..53a08af1f 100644 --- a/resources/js/editor/schema.js +++ b/resources/js/editor/schema.js @@ -12,11 +12,11 @@ const nodeCallout = { group: "block", defining: true, parseDOM: [ - {tag: 'p.callout.info', attrs: {type: 'info'}}, - {tag: 'p.callout.success', attrs: {type: 'success'}}, - {tag: 'p.callout.danger', attrs: {type: 'danger'}}, - {tag: 'p.callout.warning', attrs: {type: 'warning'}}, - {tag: 'p.callout', attrs: {type: 'info'}}, + {tag: 'p.callout.info', attrs: {type: 'info'}, priority: 75,}, + {tag: 'p.callout.success', attrs: {type: 'success'}, priority: 75,}, + {tag: 'p.callout.danger', attrs: {type: 'danger'}, priority: 75,}, + {tag: 'p.callout.warning', attrs: {type: 'warning'}, priority: 75,}, + {tag: 'p.callout', attrs: {type: 'info'}, priority: 75}, ], toDOM: function(node) { const type = node.attrs.type || 'info'; @@ -24,7 +24,7 @@ const nodeCallout = { } }; -const customNodes = baseNodes.prepend({ +const customNodes = baseNodes.append({ callout: nodeCallout, });