mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
fix: First item in list must be a paragraph (#8632)
closes #8611 closes #8216
This commit is contained in:
@@ -22,7 +22,7 @@ export default class CheckboxItem extends Node {
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
content: "paragraph block*",
|
||||
content: "block+",
|
||||
defining: true,
|
||||
draggable: true,
|
||||
parseDOM: [
|
||||
|
||||
@@ -26,7 +26,7 @@ export default class ListItem extends Node {
|
||||
|
||||
get schema(): NodeSpec {
|
||||
return {
|
||||
content: "paragraph block*",
|
||||
content: "block+",
|
||||
defining: true,
|
||||
draggable: true,
|
||||
parseDOM: [{ tag: "li" }],
|
||||
|
||||
Reference in New Issue
Block a user