* Fix bug#12367.

This commit is contained in:
qiyu-xie
2021-04-26 10:45:12 +08:00
parent ff4e1de377
commit 4112706f32
+3 -1
View File
@@ -556,7 +556,9 @@ function notice()
else
{
executionID = $('#execution').val();
link = createLink('build', 'create','executionID=' + executionID + '&productID=' + $('#product').val());
productID = $('#product').val();
projectID = $('#project').val();
link = createLink('build', 'create','executionID=' + executionID + '&productID=' + productID + '&projectID=' + projectID);
link += config.requestType == 'GET' ? '&onlybody=yes' : '?onlybody=yes';
html += '<a href="' + link + '" data-toggle="modal" data-type="iframe" style="padding-right:5px">' + createBuild + '</a> ';
html += '<a href="javascript:loadExecutionBuilds(' + executionID + ')">' + refresh + '</a>';