From 73b5269051bf847991a810b8a0a8a52167d279fc Mon Sep 17 00:00:00 2001 From: Yagami Date: Thu, 2 Mar 2023 08:37:15 +0800 Subject: [PATCH] * Fix bug #32428. --- module/programplan/js/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/programplan/js/edit.js b/module/programplan/js/edit.js index fd3a453708..c2a243fa1f 100644 --- a/module/programplan/js/edit.js +++ b/module/programplan/js/edit.js @@ -2,7 +2,7 @@ function changeParentStage(stageID) { $.get(createLink('programplan', 'ajaxGetAttribute', 'stageID=' + stageID + '&attribute=' + plan.attribute), function(attribute) { - $('#attributeType th + td').html(attribute); + $('#attributeType td:first').html(attribute); $("#attribute" + "_chosen").remove(); $("#attribute").next('.picker').remove(); $("#attribute").chosen();