diff --git a/module/product/view/browse.html.php b/module/product/view/browse.html.php
index 48e46c5407..f478e7ba50 100644
--- a/module/product/view/browse.html.php
+++ b/module/product/view/browse.html.php
@@ -48,8 +48,8 @@ $projectIDParam = $isProjectStory ? "projectID=$projectID&" : '';
#productStoryForm #storyList .c-taskCount,
#productStoryForm #storyList .c-actions { border-left: 1px solid #F2F4F7;}
-#productStoryForm #storyList .c-actions {overflow: visible;}
-#productStoryForm #storyList .dividing-line {width: 1px; height: 16px; display: inline-block; vertical-align: middle; background: #E4E4E4; margin: 0 4px 0 0;}
+#productStoryForm table tbody tr td.c-actions {overflow: visible;}
+#productStoryForm table tbody tr td.c-actions .dividing-line {width: 1px; height: 16px; display: inline-block; vertical-align: middle; background: #E4E4E4; margin: 0 4px 0 0;}
diff --git a/module/story/lang/zh-cn.php b/module/story/lang/zh-cn.php
index 36622f9b07..cbce6c57b7 100644
--- a/module/story/lang/zh-cn.php
+++ b/module/story/lang/zh-cn.php
@@ -106,7 +106,7 @@ $lang->story->moduleAB = '模块';
$lang->story->source = "来源";
$lang->story->sourceNote = '来源备注';
$lang->story->fromBug = '来源Bug';
-$lang->story->title = "需求名称";
+$lang->story->title = "{$lang->SRCommon}名称";
$lang->story->type = "需求类型";
$lang->story->category = "类别";
$lang->story->color = '标题颜色';
diff --git a/module/story/model.php b/module/story/model.php
index 4d5a36d2d5..148c1a957e 100644
--- a/module/story/model.php
+++ b/module/story/model.php
@@ -4254,10 +4254,9 @@ class storyModel extends model
$isClick = $this->isClickable($story, 'recall');
$title = $story->status == 'changing' ? $this->lang->story->recallChange : $this->lang->story->recall;
$title = $isClick ? $title : $this->lang->story->recallTip['actived'];
-
- $storyPriv = array(common::hasPriv('story', 'processStoryChange'), common::hasPriv('story', 'change'), common::hasPriv('story', 'submitReview'), common::hasPriv('story', 'review'), common::hasPriv('story', 'close'));
+ $storyPriv = array(common::hasPriv('story', 'change'), common::hasPriv('story', 'submitReview'), common::hasPriv('story', 'review'), common::hasPriv('story', 'close'));
$storyPrivCount = array_sum($storyPriv);
- if(common::hasPriv('story', 'recall') && ($storyPrivCount > 1))
+ if($this->app->tab == 'product' and common::hasPriv('story', 'recall') && ($storyPrivCount > 1))
{
$menu .= "
";
$menu .= "
";
@@ -4270,7 +4269,7 @@ class storyModel extends model
}
$menu .= $this->buildMenu('story', 'close', $params . "&from=&storyType=$story->type", $story, $type, '', '', 'iframe', true);
- if((common::hasPriv('story', 'recall') or $storyPrivCount > 0) and (common::hasPriv('story', 'edit') or common::hasPriv('story', 'createCase') or common::hasPriv('story', 'batchCreate') or common::hasPriv('projectstory', 'unlinkStory')))
+ if($this->app->tab == 'product' and (common::hasPriv('story', 'recall') or $storyPrivCount > 0) and (common::hasPriv('story', 'edit') or common::hasPriv('story', 'createCase') or common::hasPriv('story', 'batchCreate')))
{
$menu .= "
";
}
diff --git a/www/theme/default/style.css b/www/theme/default/style.css
index 6b30ab7c81..0f1b2b837a 100644
--- a/www/theme/default/style.css
+++ b/www/theme/default/style.css
@@ -113,7 +113,7 @@ body.xxc-embed.m-productplan-view,body.xxc-embed.m-bug-browse,body.xxc-embed.m-p
#downloadMobile .dropdown-menu .mobile-version {text-align: center;}
#downloadMobile .dropdown-menu .mobile-version span {color: #0c64eb; font-size: 12px; font-weight: 700;}
-#mainMenu > .btn-toolBar > .btn-link > .label-light,
-#mainMenu > .btn-toolbar > .btn-link > .label-light {color: #203362; background: #fff;}
-#mainMenu > .btn-toolBar > .btn-active-text,
-#mainMenu > .btn-toolbar > .btn-active-text {background: #E6EAF1;}
+#mainMenu > .btn-toolBar .btn-link .label-light,
+#mainMenu > .btn-toolbar .btn-link .label-light {color: #203362; background: #fff;}
+#mainMenu > .btn-toolBar .btn-active-text,
+#mainMenu > .btn-toolbar .btn-active-text {background: #E6EAF1;}