浏览代码

Fix binding for borderColorInput.view #value

panr 5 年之前
父节点
当前提交
a585973547
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/ckeditor5-table/src/tablecellproperties/ui/tablecellpropertiesview.js

+ 1 - 1
packages/ckeditor5-table/src/tablecellproperties/ui/tablecellpropertiesview.js

@@ -510,7 +510,7 @@ export default class TableCellPropertiesView extends View {
 			class: 'ck-table-form__border-color',
 		} );
 
-		borderColorInput.bind( 'value' ).to( this, 'borderColor' );
+		borderColorInput.view.bind( 'value' ).to( this, 'borderColor' );
 
 		borderColorInput.bind( 'isEnabled' ).to( this, 'borderStyle', value => {
 			return value !== 'none';