From 4e5a7126b99e45f87ded88ac87746a25cc693603 Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Mon, 4 Mar 2024 15:32:03 +0800 Subject: [PATCH] * Fix bug#46485. --- module/execution/js/story.ui.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/module/execution/js/story.ui.js b/module/execution/js/story.ui.js index 7c9a240721..dfc0c34f96 100644 --- a/module/execution/js/story.ui.js +++ b/module/execution/js/story.ui.js @@ -78,7 +78,11 @@ window.renderStoryCell = function(result, info) { let html = ''; if(typeof modulePairs[story.moduleID] != 'undefined') html += "" + modulePairs[story.moduleID] + " "; - if(story.isChild) html += "" + childrenAB + ""; + if(story.parent > 0) + { + if($.cookie.get('tab') == 'execution') html += story.parentName + ' / '; + html += "" + childrenAB + ""; + } if(html) result.unshift({html}); } return result;