diff --git a/src/js/_enqueues/wp/updates.js b/src/js/_enqueues/wp/updates.js
index 1e00589cec..e31c82cda1 100644
|
a
|
b
|
|
| 970 | 970 | var $form = $( '#bulk-action-form' ), |
| 971 | 971 | $views = $( '.subsubsub' ), |
| 972 | 972 | $pluginRow = $( this ), |
| | 973 | $itemsCount = $( '.displaying-num' ), |
| 973 | 974 | columnCount = $form.find( 'thead th:not(.hidden), thead td' ).length, |
| 974 | 975 | pluginDeletedRow = wp.template( 'item-deleted-row' ), |
| 975 | 976 | /** |
| … |
… |
|
| 1049 | 1050 | |
| 1050 | 1051 | if ( plugins.all.length ) { |
| 1051 | 1052 | $views.find( '.all .count' ).text( '(' + plugins.all.length + ')' ); |
| | 1053 | |
| | 1054 | if ( $itemsCount.length ) { |
| | 1055 | $itemsCount.text( plugins.all.length + ' ' + $itemsCount.text().split( ' ' ).slice(2) ); |
| | 1056 | } |
| 1052 | 1057 | } else { |
| 1053 | 1058 | $form.find( '.tablenav' ).css( { visibility: 'hidden' } ); |
| 1054 | 1059 | $views.find( '.all' ).remove(); |