From 2b5885943460d907a8b0ff973401598da5d0ca1e Mon Sep 17 00:00:00 2001 From: zhangzilong Date: Fri, 11 Feb 2022 16:54:49 +0800 Subject: [PATCH] * Code for bug #19255. --- module/bug/js/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/js/edit.js b/module/bug/js/edit.js index 2e8440f36f..47ba1af935 100644 --- a/module/bug/js/edit.js +++ b/module/bug/js/edit.js @@ -35,7 +35,7 @@ function changeExecutionName(projectID) var link = createLink('bug', 'ajaxGetExecutionLang', 'projectID=' + projectID); $.post(link, function(executionLang) { - $('#executionBox').html(executionLang); + $('#executionBox').html(executionLang); }) } }