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}";