diff --git a/docs/src/demos/Examples/CollaborativeEditing/MenuBar.vue b/docs/src/demos/Examples/CollaborativeEditing/MenuBar.vue index 191a5192..94530804 100644 --- a/docs/src/demos/Examples/CollaborativeEditing/MenuBar.vue +++ b/docs/src/demos/Examples/CollaborativeEditing/MenuBar.vue @@ -48,13 +48,12 @@ export default { }, { icon: 'format-clear', - title: 'Clear Inline Format', - action: () => this.editor.chain().focus().unsetAllMarks().run(), - }, - { - icon: 'eraser-line', - title: 'Reset Format', - action: () => this.editor.chain().focus().clearNodes().run(), + title: 'Clear Format', + action: () => this.editor.chain() + .focus() + .clearNodes() + .unsetAllMarks() + .run(), }, { icon: 'paragraph',