* Fix bug of task#79663.

This commit is contained in:
xieqiyu
2022-12-13 16:42:17 +08:00
parent 0beb81ebd7
commit 5c2ed30fd3
+1 -1
View File
@@ -88,7 +88,7 @@ $('#submit').click(function()
{
var parentPlan = $('#parent').val();
var branches = $('#branch').val();
if(parentPlan != 0 && branches)
if(parentPlan > 0 && branches)
{
link = createLink('productplan', 'ajaxGetDiffBranchesTip', "produtID=" + productID + "&parentID=" + parentPlan + "&branches=" + branches.toString());
$.post(link, function(diffBranchesTip)