This commit is contained in:
sunguangming
2024-05-22 16:27:19 +08:00
parent 6936552054
commit f829f1e59f
+2 -2
View File
@@ -717,7 +717,7 @@ class storyZen extends story
if(empty($branches)) unset($fields['branch']);
if($this->view->hiddenPlan) unset($fields['plan']);
$hiddenGrade = !$this->story->showGrade($storyType);
$hiddenGrade = $this->config->edition != 'ipd';
if($hiddenGrade && $storyType == 'epic') $fields['parent']['hidden'] = true;
$this->view->branchID = $branch;
@@ -1042,7 +1042,7 @@ class storyZen extends story
$fields['assignedTo']['options'] = $teamUsers;
}
$hiddenGrade = !$this->story->showGrade($storyType);
$hiddenGrade = $this->config->edition != 'ipd';
if($hiddenGrade && $storyType == 'epic') $hiddenParent = true;
$this->view->hiddenParent = $hiddenParent;