* Fix bug#46485.

This commit is contained in:
xieqiyu
2024-03-05 10:22:38 +08:00
committed by caoyanyi
parent fc6007f02d
commit 4e5a7126b9
+5 -1
View File
@@ -78,7 +78,11 @@ window.renderStoryCell = function(result, info)
{
let html = '';
if(typeof modulePairs[story.moduleID] != 'undefined') html += "<span class='label gray-pale rounded-xl clip'>" + modulePairs[story.moduleID] + "</span> ";
if(story.isChild) html += "<span class='label gray-pale rounded-xl'>" + childrenAB + "</span>";
if(story.parent > 0)
{
if($.cookie.get('tab') == 'execution') html += story.parentName + ' / ';
html += "<span class='label gray-pale rounded-xl'>" + childrenAB + "</span>";
}
if(html) result.unshift({html});
}
return result;