Make WordPress Core

Ticket #44394: patch.diff

File patch.diff, 505 bytes (added by saimonh, 6 years ago)
  • wp-includes/js/media-editor.js

    diff --git a/wp-includes/js/media-editor.js b/wp-includes/js/media-editor.js
    index a88709c568..70d9edc07a 100644
    a b  
    584584                        _.each( this.defaults, function( value, key ) {
    585585                                attrs[ key ] = self.coerce( attrs, key );
    586586                                if ( value === attrs[ key ] && ( ! changed || value === wp.media._galleryDefaults[ key ] ) ) {
     587                                        if ( 'columns' === key ) {
     588                                                return;
     589                                        }
    587590                                        delete attrs[ key ];
    588591                                }
    589592                        } );