Преглед на файлове

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