diff --git a/src/js/_enqueues/wp/updates.js b/src/js/_enqueues/wp/updates.js
index 1e00589cec..e31c82cda1 100644
--- a/src/js/_enqueues/wp/updates.js
+++ b/src/js/_enqueues/wp/updates.js
@@ -970,6 +970,7 @@
 			var $form            = $( '#bulk-action-form' ),
 				$views           = $( '.subsubsub' ),
 				$pluginRow       = $( this ),
+				$itemsCount      = $( '.displaying-num' ),
 				columnCount      = $form.find( 'thead th:not(.hidden), thead td' ).length,
 				pluginDeletedRow = wp.template( 'item-deleted-row' ),
 				/**
@@ -1049,6 +1050,10 @@
 
 			if ( plugins.all.length ) {
 				$views.find( '.all .count' ).text( '(' + plugins.all.length + ')' );
+
+				if ( $itemsCount.length ) {
+					$itemsCount.text( plugins.all.length + ' ' + $itemsCount.text().split( ' ' ).slice(2) );
+				}
 			} else {
 				$form.find( '.tablenav' ).css( { visibility: 'hidden' } );
 				$views.find( '.all' ).remove();
