rename schema names

This commit is contained in:
Philipp Kühn
2020-11-03 20:57:09 +01:00
parent 50d1d6372e
commit 4ed01c41cb
12 changed files with 31 additions and 31 deletions

View File

@@ -5,7 +5,7 @@ const TaskList = createNode({
group: 'block list',
content: 'task_item+',
content: 'taskItem+',
parseHTML() {
return [
@@ -23,7 +23,7 @@ const TaskList = createNode({
addCommands() {
return {
taskList: (): Command => ({ commands }) => {
return commands.toggleList('task_list', 'task_item')
return commands.toggleList('task_list', 'taskItem')
},
}
},