From a2ee0edb63195ef8fe9ee4f0f153a18032f68172 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Thu, 30 Mar 2023 11:11:41 +0800 Subject: [PATCH] * Code for task #89239. --- module/story/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/model.php b/module/story/model.php index ecefa374c6..497479632f 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -5169,7 +5169,7 @@ class storyModel extends model } if($storyType == 'requirement' and $story->type == 'story') echo 'SR '; if($story->parent > 0 and isset($story->parentName)) $story->title = "{$story->parentName} / {$story->title}"; - if(isset($branches[$story->branch]) and $showBranch and $this->config->vision == 'rnd') echo "branch]}>{$branches[$story->branch]} "; + if(isset($branches[$story->branch]) and $showBranch and $this->config->vision != 'lite') echo "branch]}>{$branches[$story->branch]} "; if($story->module and isset($modulePairs[$story->module])) echo "{$modulePairs[$story->module]} "; if($story->parent > 0) echo '' . $this->lang->story->childrenAB . ' '; echo $canView ? html::a($storyLink, $story->title, '', "title='$story->title' style='color: $story->color' data-app='$tab'") : "{$story->title}";