소스 검색

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';