Maciej Gołaszewski пре 7 година
родитељ
комит
c0b5a5d83f

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

@@ -69,7 +69,7 @@ export default class TableEditing extends Plugin {
 		schema.register( 'tableCell', {
 			allowIn: 'tableRow',
 			allowAttributes: [ 'colspan', 'rowspan' ],
-			isLimit: true
+			isObject: true
 		} );
 
 		// Allow all $block content inside table cell.

+ 1 - 1
packages/ckeditor5-table/tests/tableselection.js

@@ -9,7 +9,7 @@ import { setData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 import { defaultConversion, defaultSchema, modelTable } from './_utils/utils';
 
 import TableSelection from '../src/tableselection';
-import { getData as getViewData } from '../../ckeditor5-engine/src/dev-utils/view';
+import { getData as getViewData } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
 
 describe( 'TableSelection', () => {
 	let editor, model, root, tableSelection;