From c9dc1a402377fc57bdfc8eb03aa23f8ca61657bd Mon Sep 17 00:00:00 2001 From: chaideqing Date: Fri, 22 Dec 2023 16:35:30 +0800 Subject: [PATCH] * Fix bug #42084. --- module/bug/js/common.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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}); })