diff --git a/module/product/view/browse.html.php b/module/product/view/browse.html.php
index 8bf50fe04a..48cfe38868 100644
--- a/module/product/view/browse.html.php
+++ b/module/product/view/browse.html.php
@@ -41,6 +41,7 @@ $projectIDParam = $isProjectStory ? "projectID=$projectID&" : '';
.btn-group a i.icon-plus, .btn-group a i.icon-link {font-size: 16px;}
.btn-group a.btn-secondary, .btn-group a.btn-primary {border-right: 1px solid rgba(255,255,255,0.2);}
.btn-group button.dropdown-toggle.btn-secondary, .btn-group button.dropdown-toggle.btn-primary {padding:6px;}
+
#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/config.php b/module/story/config.php
index a494269437..5041555c50 100644
--- a/module/story/config.php
+++ b/module/story/config.php
@@ -58,6 +58,10 @@ if($app->tab == 'execution')
{
$config->story->datatable->defaultField = array('id','order', 'pri', 'title', 'plan', 'openedBy', 'assignedTo', 'estimate', 'status', 'stage', 'taskCount', 'actions');
}
+else if($app->tab == 'product')
+{
+ $config->story->datatable->defaultField = array('id', 'title', 'plan', 'pri', 'status', 'openedBy', 'estimate', 'reviewedBy', 'stage', 'assignedTo', 'taskCount', 'actions');
+}
else
{
$config->story->datatable->defaultField = array('id', 'pri', 'title', 'plan', 'openedBy', 'assignedTo', 'estimate', 'status', 'stage', 'taskCount', 'actions');
diff --git a/module/story/lang/zh-cn.php b/module/story/lang/zh-cn.php
index a40f0a269d..70c5f3cfe7 100644
--- a/module/story/lang/zh-cn.php
+++ b/module/story/lang/zh-cn.php
@@ -126,10 +126,10 @@ $lang->story->stageAB = '阶段';
$lang->story->stagedBy = '设置阶段者';
$lang->story->mailto = '抄送给';
$lang->story->openedBy = '由谁创建';
-$lang->story->openedByAB = '创建';
+$lang->story->openedByAB = '创建者';
$lang->story->openedDate = '创建日期';
$lang->story->assignedTo = '指派给';
-$lang->story->assignedToAB = '指派';
+$lang->story->assignedToAB = '指派给';
$lang->story->assignedDate = '指派日期';
$lang->story->lastEditedBy = '最后修改';
$lang->story->lastEditedDate = '最后修改日期';
@@ -139,7 +139,7 @@ $lang->story->closedReason = '关闭原因';
$lang->story->rejectedReason = '拒绝原因';
$lang->story->changedBy = '由谁变更';
$lang->story->changedDate = '变更时间';
-$lang->story->reviewedBy = '由谁评审';
+$lang->story->reviewedBy = '评审者';
$lang->story->reviewer = $lang->story->reviewedBy;
$lang->story->reviewers = '评审人员';
$lang->story->reviewedDate = '评审时间';