Merge "Fix attachment of toolbar dialogs"

This commit is contained in:
jenkins-bot 2024-08-06 20:27:30 +00:00 committed by Gerrit Code Review
commit 8c9ec66df3

View file

@ -128,7 +128,7 @@ CommentTarget.prototype.attachToolbar = function () {
this.replyWidget.$headerWrapper.append(
this.getToolbar().$element.append( this.replyWidget.modeTabSelect ? this.replyWidget.modeTabSelect.$element : null )
);
this.getToolbar().$element.prepend( this.getSurface().getToolbarDialogs().$element );
this.getToolbar().$element.prepend( this.getSurface().getToolbarDialogs( 'above' ).$element );
};
CommentTarget.prototype.getSurfaceConfig = function ( config ) {