Explorar el Código

Other: Renamed 'headings' ui component to 'heading'.

Maciej Gołaszewski hace 7 años
padre
commit
f5a696e21e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-enter/tests/manual/enter.js

+ 1 - 1
packages/ckeditor5-enter/tests/manual/enter.js

@@ -16,7 +16,7 @@ import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		plugins: [ Enter, Typing, Heading, Undo, Bold, Italic ],
-		toolbar: [ 'headings', '|', 'bold', 'italic', 'undo', 'redo' ]
+		toolbar: [ 'heading', '|', 'bold', 'italic', 'undo', 'redo' ]
 	} )
 	.then( editor => {
 		window.editor = editor;