From dd62c7a6101280602ce79d0cede7d74e4a0fd113 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Wed, 12 Feb 2025 15:55:05 +0800 Subject: [PATCH] * [bug#59534,done,0.5h] fix parent stage link error. --- module/project/js/execution.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/project/js/execution.ui.js b/module/project/js/execution.ui.js index 73a0c44f85..a79ea722d2 100644 --- a/module/project/js/execution.ui.js +++ b/module/project/js/execution.ui.js @@ -61,7 +61,7 @@ window.onRenderCell = function(result, {col, row}) html += data.prefixLabel; } - if(data.type == 'point') + if(data.type == 'point' || !(executionType !== undefined && !data.isParent)) { if(result[0].props.href !== undefined) delete result[0].props.href;