Procházet zdrojové kódy

Tests: Fixed test broken in the previous commit.

Piotrek Koszuliński před 10 roky
rodič
revize
e489e91d9b

+ 1 - 1
packages/ckeditor5-engine/tests/treeview/manual/typing.js

@@ -30,5 +30,5 @@ function handleTyping( evt, mutations ) {
 		return;
 	}
 
-	mutation.node.setText( mutation.newText );
+	mutation.node.data = mutation.newText;
 }