Explorar el Código

Fix not renamed exec statement.

Mateusz Samsel hace 6 años
padre
commit
d9bca15dbe
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-paste-from-office/src/pastefromoffice.js

+ 1 - 1
packages/ckeditor5-paste-from-office/src/pastefromoffice.js

@@ -64,7 +64,7 @@ export default class PasteFromOffice extends Plugin {
 				const activeNormalizer = normalizers.find( normalizer => normalizer.isActive( htmlString ) );
 
 				if ( activeNormalizer ) {
-					activeNormalizer.exec( data );
+					activeNormalizer.execute( data );
 
 					data.isTransformedWithPasteFromOffice = true;
 				}