diff --git a/module/bug/js/common.js b/module/bug/js/common.js index a587f48db2..3cb16d1119 100644 --- a/module/bug/js/common.js +++ b/module/bug/js/common.js @@ -694,10 +694,11 @@ function loadExecutionBuilds(executionID, num) $.get(link, function(data) { if(!data) data = ''; - $('#openedBuild').replaceWith(data); - $('#openedBuild').val(oldOpenedBuild); + $('#buildBox .input-group-btn').remove(); $('#pickerDropMenu-pk_openedBuild').remove(); $('#openedBuild').next('.picker').remove(); + $('#openedBuild').replaceWith(data); + $('#openedBuild').val(oldOpenedBuild); notice(); $("#openedBuild").picker({optionRender: markReleasedBuilds}); })