Przeglądaj źródła

Used #isSeparator instead of #separator in the dropdown list model.

Aleksander Nowodzinski 7 lat temu
rodzic
commit
4235e45e56
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      packages/ckeditor5-table/src/tableui.js

+ 1 - 1
packages/ckeditor5-table/src/tableui.js

@@ -168,7 +168,7 @@ function addListOption( option, editor, commands, dropdownItems ) {
 
 	if ( option === '|' ) {
 		itemModel.set( {
-			separator: true
+			isSeparator: true
 		} );
 	} else {
 		const { commandName, label, bindIsActive } = option;