From b4512fd660459461ba9338550f4c488ed1cc96ad Mon Sep 17 00:00:00 2001
From: holan20180123 <56391770@qq.com>
Date: Thu, 13 Aug 2020 13:47:23 +0800
Subject: [PATCH] * Fix bug #3276.
---
module/bug/js/common.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/module/bug/js/common.js b/module/bug/js/common.js
index 90ddf72002..bff09533b9 100644
--- a/module/bug/js/common.js
+++ b/module/bug/js/common.js
@@ -496,7 +496,8 @@ function notice()
if(typeof(branch) == 'undefined') branch = 0;
var link = createLink('release', 'create', 'productID=' + $('#product').val() + '&branch=' + branch);
if(typeof(flow) != 'undefined' && flow == 'onlyTest') link = createLink('build', 'create','projectID=' + $('#product').val());
- html += '' + createBuild + ' ';
+ link += '?onlybody=yes';
+ html += '' + createBuild + ' ';
html += '' + refresh + '';
}
else