From 92014ce0ce33203312e253a145de024cd20bbf59 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Tue, 7 Dec 2021 13:54:00 +0800 Subject: [PATCH] * Finish task #45805. --- module/my/control.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/module/my/control.php b/module/my/control.php index 82c3968828..4ea6e981cc 100644 --- a/module/my/control.php +++ b/module/my/control.php @@ -625,6 +625,9 @@ class my extends control $this->view->pager = $pager; $this->view->type = $type; $this->view->issues = $this->loadModel('issue')->getUserIssues($type, $this->app->user->account, $orderBy, $pager); + + $this->view->projectList = $this->loadModel('project')->getPairsByProgram(0); + $this->display(); } @@ -655,6 +658,9 @@ class my extends control $this->view->pager = $pager; $this->view->type = $type; $this->view->mode = 'risk'; + + $this->view->projectList = $this->loadModel('project')->getPairsByProgram(0); + $this->display(); }