8
0
Szymon Cofalik 6 лет назад
Родитель
Сommit
55a379f6e1
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-table/src/tableediting.js

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

@@ -220,7 +220,7 @@ export default class TableEditing extends Plugin {
 				editor.execute( 'insertTableRowBelow' );
 				editor.execute( 'insertTableRowBelow' );
 
 
 				// Re-evaluate `isLastRow`. If `insertTableRowBelow` execution didn't add any row (because it was disabled or it got
 				// Re-evaluate `isLastRow`. If `insertTableRowBelow` execution didn't add any row (because it was disabled or it got
-				// overwritten in some way) this will still be `false`. But if the row was added it will change to `true`.
+				// overwritten in some way) this will still be `true`. But if the row was added it will change to `false`.
 				isLastRow = currentRowIndex === table.childCount - 1;
 				isLastRow = currentRowIndex === table.childCount - 1;
 			}
 			}