diff --git a/module/execution/model.php b/module/execution/model.php index fba531ff94..5424353e16 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -2611,9 +2611,13 @@ class executionModel extends model } } - $projectID = $this->dao->select('project')->from(TABLE_EXECUTION)->where('id')->eq($executionID)->fetch('project'); + if($this->config->systemMode == 'new') + { + $projectID = $this->dao->select('project')->from(TABLE_EXECUTION)->where('id')->eq($executionID)->fetch('project'); + $this->session->set('project', $projectID); + $this->linkStory($projectID, $planStories, $planProducts); + } $this->linkStory($executionID, $planStories, $planProducts); - if($this->config->systemMode == 'new') $this->linkStory($projectID, $planStories, $planProducts); } /** diff --git a/module/index/css/index.css b/module/index/css/index.css index 1ae12da38f..bdd0ebe853 100644 --- a/module/index/css/index.css +++ b/module/index/css/index.css @@ -120,3 +120,5 @@ body.menu-hide {padding-left: 0;} { #upgradeContent{width: 85%;} } +#searchbox .dropdown-menu > li.search-type-all{max-width: 250px} +#searchbox .dropdown-menu > li.search-type-all a{width: 100%; overflow: hidden; text-overflow: ellipsis;} diff --git a/module/webhook/css/bind.css b/module/webhook/css/bind.css index 85299d4b98..c9942a1d33 100644 --- a/module/webhook/css/bind.css +++ b/module/webhook/css/bind.css @@ -1 +1 @@ -#bindForm .c-bind{width: 128px;} +#bindForm .c-bind{width: 148px;}