From d0340d56661f604f4d33f84eab95b34bc7cd3155 Mon Sep 17 00:00:00 2001 From: mayue Date: Tue, 17 May 2022 07:47:50 +0000 Subject: [PATCH] * Optimize code. --- module/productplan/js/create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/productplan/js/create.js b/module/productplan/js/create.js index dd3bcd3ebc..bbf0718f74 100644 --- a/module/productplan/js/create.js +++ b/module/productplan/js/create.js @@ -65,7 +65,7 @@ $('#future').on('change', function() $('#branch').change(function() { - var branchID = $(this).val(); + var branchID = $(this).val(); var lastPlanLink = createLink('productplan', 'ajaxGetLast', "productID=" + productID + "&branch=" + branchID); var topPlanLink = createLink('productplan', 'ajaxGetTopPlan', "productID=" + productID + "&branch=" + branchID);