Make WordPress Core

Ticket #50190: updates.js.patch

File updates.js.patch, 899 bytes (added by sajjad67, 4 years ago)

change currently updated theme's hasUpdate prop to false as it's already updated to render it properly without showing Update Available Again...

  • src/js/_enqueues/wp/updates.js

     
    10131013                        }
    10141014                }
    10151015
     1016                // check first if theme exists & we have themes in data
     1017                if ( $theme.length && wp.themes.data.themes.length ) {
     1018                       
     1019                        // go through each theme data to search for currently updated theme
     1020                        wp.themes.data.themes.forEach( function( theme, index ) {
     1021
     1022                                // check if theme is currently updated one
     1023                                if( theme.id === response.slug ){
     1024                           
     1025                                // change it's hasUpdate prop to false as it's already updated
     1026                                wp.themes.data.themes[index].hasUpdate = false;
     1027                                }
     1028
     1029                        });
     1030                }
     1031
    10161032                wp.updates.addAdminNotice( _.extend( { selector: $notice }, updatedMessage ) );
    10171033                wp.a11y.speak( wp.updates.l10n.updatedMsg, 'polite' );
    10181034