Ver Fonte

Removed info text from the image insertion via URL field.

Aleksander Nowodzinski há 5 anos atrás
pai
commit
50f3e61f08
1 ficheiros alterados com 1 adições e 2 exclusões
  1. 1 2
      packages/ckeditor5-image/src/imageinsert/utils.js

+ 1 - 2
packages/ckeditor5-image/src/imageinsert/utils.js

@@ -70,8 +70,7 @@ export function createLabeledInputView( locale ) {
 	labeledInputView.set( {
 		label: t( 'Insert image via URL' )
 	} );
-	labeledInputView.fieldView.placeholder = 'https://example.com/src/image.png';
-	labeledInputView.infoText = t( 'Paste the image source URL.' );
+	labeledInputView.fieldView.placeholder = 'https://example.com/image.png';
 
 	return labeledInputView;
 }