From b45b445dc5f77e6522178dd60eebc0892cb49f16 Mon Sep 17 00:00:00 2001 From: wangyuting Date: Thu, 3 Apr 2025 10:19:55 +0800 Subject: [PATCH] * [bug#61147,done,0.5h,0h] Fix task title error. --- module/project/js/execution.ui.js | 1 + 1 file changed, 1 insertion(+) diff --git a/module/project/js/execution.ui.js b/module/project/js/execution.ui.js index 3c30dc4c49..768d160499 100644 --- a/module/project/js/execution.ui.js +++ b/module/project/js/execution.ui.js @@ -56,6 +56,7 @@ window.onRenderCell = function(result, {col, row}) result[0].props.children = data.type == 'point' ? '' : data.name; if(data.id.indexOf('tid') > -1 && data.type != 'point') { + result[0].props.title = data.rawName; result[0].props.children = data.rawName; result[0].props.href = $.createLink('task', 'view', 'taskID=' + data.rawID); html += data.prefixLabel;