Przeglądaj źródła

Broken theme manual test due to wrong collection name in toolbar component. Fixes #29.

Aleksander Nowodzinski 9 lat temu
rodzic
commit
84101a9372

+ 1 - 1
packages/ckeditor5-theme-lark/tests/manual/theme.js

@@ -337,7 +337,7 @@ function toolbar( children = [] ) {
 	const toolbar = new Toolbar( null, new ToolbarView() );
 
 	children.forEach( c => {
-		toolbar.add( 'buttons', c );
+		toolbar.add( 'items', c );
 	} );
 
 	return toolbar;