瀏覽代碼

Organize imports in table clipboard.

Maciej Gołaszewski 5 年之前
父節點
當前提交
58523f4c39
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      packages/ckeditor5-table/src/tableclipboard.js

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

@@ -8,9 +8,10 @@
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
+
 import TableSelection from './tableselection';
-import { getColumnIndexes, getRowIndexes, isSelectionRectangular } from './utils';
 import TableWalker from './tablewalker';
+import { getColumnIndexes, getRowIndexes, isSelectionRectangular } from './utils';
 import { findAncestor } from './commands/utils';
 import { cropTableToDimensions } from './tableselection/croptable';