Merge "MWExternalLinkAnnotation: Call core method to evaluate diff"

This commit is contained in:
jenkins-bot 2021-01-22 19:51:32 +00:00 committed by Gerrit Code Review
commit 5dbc152990

View file

@ -80,7 +80,7 @@ ve.dm.MWExternalLinkAnnotation.static.toDomElements = function ( dataElement, do
ve.dm.MWExternalLinkAnnotation.static.describeChange = function ( key, change ) {
if ( key === 'href' ) {
return ve.htmlMsg( 'visualeditor-changedesc-link-href', this.wrapText( 'del', change.from ), this.wrapText( 'ins', change.to ) );
return ve.dm.LinkAnnotation.static.describeChange( key, change );
}
return null;
};