8
0
Просмотр исходного кода

Use getChildren() to iterate over document fragment.

Maciej Gołaszewski 5 лет назад
Родитель
Сommit
3e723af522
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-table/src/tableclipboard.js

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

@@ -242,7 +242,7 @@ function getTableFromContent( content ) {
 		return content;
 	}
 
-	for ( const child of Array.from( content ) ) {
+	for ( const child of content.getChildren() ) {
 		if ( child.is( 'table' ) ) {
 			return child;
 		}