소스 검색

Add missing StylesProcessor instance.

Maciej Gołaszewski 5 년 전
부모
커밋
f2d3b7d1c3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/ckeditor5-editor-inline/src/inlineeditor.js

+ 1 - 1
packages/ckeditor5-editor-inline/src/inlineeditor.js

@@ -64,7 +64,7 @@ export default class InlineEditor extends Editor {
 	constructor( sourceElementOrData, config ) {
 		super( config );
 
-		this.data.processor = new HtmlDataProcessor();
+		this.data.processor = new HtmlDataProcessor( this.stylesProcessor );
 
 		this.model.document.createRoot();