Merge "fix order of sidebar elements"

This commit is contained in:
jenkins-bot 2021-07-16 14:15:16 +00:00 committed by Gerrit Code Review
commit 4cb9b05668

View file

@ -56,11 +56,11 @@ ve.ui.MWTransclusionOutlineTemplateWidget = function VeUiMWTransclusionOutlineTe
this.parameters = new OO.ui.FieldsetLayout( {
items: checkboxes
} );
this.$element
.append( this.parameters.$element, addParameterButton.$element );
if ( this.searchWidget ) {
this.$element.prepend( this.searchWidget.$element, this.infoWidget.$element );
this.$element.append( this.searchWidget.$element, this.infoWidget.$element );
}
this.$element.append( this.parameters.$element, addParameterButton.$element );
};
/* Inheritance */