Site Health info tab: fix replacing the size strings in the copied info.

Props xkon.
See #46707.

git-svn-id: https://develop.svn.wordpress.org/trunk@45241 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2019-04-18 04:50:45 +00:00
parent 0da79e252d
commit 25bc196513
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ jQuery( document ).ready( function( $ ) {
var text = value.debug || value.size;
if ( typeof text !== 'undefined' ) {
clipdoardText = clipdoardText.replace( name + ': not calculated', name + ': ' + text );
clipdoardText = clipdoardText.replace( name + ': loading...', name + ': ' + text );
}
} );