diff --git a/module/kanban/js/view.js b/module/kanban/js/view.js
index 7950927243..b1a7f40dff 100644
--- a/module/kanban/js/view.js
+++ b/module/kanban/js/view.js
@@ -483,7 +483,7 @@ function renderExecutionItem(item, $item)
var name = item.title ? item.title : item.name;
if(!$title.length)
{
- var icon = mode == 'new' ? 'run' : 'project';
+ var icon = mode == 'ALM' ? 'run' : 'project';
var viewMethod = item.execType == 'kanban' ? 'kanban' : 'view';
if(privs.includes('viewExecution') && item.deleted == '0') $title = $('' + name + '').appendTo($titleBox).attr('href', createLink('execution', viewMethod, 'executionID=' + item.fromID));
if(!privs.includes('viewExecution') || item.deleted == '1') $title = $('
' + name + '
').appendTo($titleBox);
diff --git a/module/kanban/view/view.html.php b/module/kanban/view/view.html.php
index 9d48a444cf..a3c572243c 100644
--- a/module/kanban/view/view.html.php
+++ b/module/kanban/view/view.html.php
@@ -36,6 +36,7 @@ js::set('kanbanID', $kanban->id);
js::set('laneCount', $laneCount);
js::set('userList', $userList);
js::set('noAssigned', $lang->kanbancard->noAssigned);
+js::set('mode', $config->systemMode);
js::set('users', $users);
js::set('colorListLang', $lang->kanbancard->colorList);
js::set('colorList', $this->config->kanban->cardColorList);
diff --git a/module/my/model.php b/module/my/model.php
index 3a432a791d..d8424c070a 100644
--- a/module/my/model.php
+++ b/module/my/model.php
@@ -1058,6 +1058,7 @@ class myModel extends model
->beginIF(!$this->app->user->admin)->andWhere('t1.product')->in($this->app->user->view->products)->fi()
->andWhere('t2.reviewer')->eq($this->app->user->account)
->andWhere('t2.result')->eq('')
+ ->andWhere('t1.vision')->eq($this->config->vision)
->andWhere('t1.status')->eq('reviewing')
->orderBy($orderBy)
->query();
@@ -1263,6 +1264,7 @@ class myModel extends model
$actions = $this->dao->select('objectType,objectID,actor,action,MAX(`date`) as `date`,extra')->from(TABLE_ACTION)
->where('actor')->eq($this->app->user->account)
->andWhere('objectType')->in($this->config->my->reviewObjectType)
+ ->andWhere('vision')->eq($this->config->vision)
->andWhere($condition)
->groupBy('objectType,objectID')
->orderBy($orderBy)