This is an automated email from the ASF dual-hosted git repository. wwong pushed a commit to branch heron-ui-js-fix in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
commit 6e9a3de04468e1350645126271a6fa5dff590099 Author: Windham Wong <[email protected]> AuthorDate: Fri Mar 25 23:22:19 2022 +0800 Update physical-plan.js Fixing the JS issue on heron-ui --- heron/tools/ui/resources/static/js/physical-plan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heron/tools/ui/resources/static/js/physical-plan.js b/heron/tools/ui/resources/static/js/physical-plan.js index cf43232..16438c0 100644 --- a/heron/tools/ui/resources/static/js/physical-plan.js +++ b/heron/tools/ui/resources/static/js/physical-plan.js @@ -52,7 +52,7 @@ for (var wk in instances) { var worker = instances[wk]; if (worker.name === comp) { - containers[worker.stmgrId].children.push(worker); + containers[worker.stmgr_id].children.push(worker); } } }
