瀏覽代碼

Fixed: wrong letter case in Button.model#iconAlign value.

Aleksander Nowodzinski 9 年之前
父節點
當前提交
b118e775ba
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/ckeditor5-editor-classic/src/utils/imitatefeatures.js

+ 2 - 2
packages/ckeditor5-editor-classic/src/utils/imitatefeatures.js

@@ -27,7 +27,7 @@ export function imitateFeatures( editor ) {
 		isOn: false,
 		label: t( 'Bold' ),
 		icon: 'bold',
-		iconAlign: 'left'
+		iconAlign: 'LEFT'
 	} );
 
 	// Note – most of the contents of this file is ignored, as it's a temporary file that will
@@ -51,7 +51,7 @@ export function imitateFeatures( editor ) {
 		isOn: false,
 		label: t( 'Italic' ),
 		icon: 'italic',
-		iconAlign: 'left'
+		iconAlign: 'LEFT'
 	} );
 
 	/* istanbul ignore next */