[Monitor | Trunk]: Hide stakeholder if he is not active in search
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-monitor-portal/trunk/monitor@58914 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
949d9f0a94
commit
0bb9d7dc3f
|
@ -171,7 +171,7 @@ export class SearchStakeholdersComponent {
|
|||
private showFunders() {
|
||||
let ret = [];
|
||||
for (let result of this.results) {
|
||||
if (!result.isPublic && !this.isStakeholderManager()) {
|
||||
if (!result.isActive || (!result.isPublic && !this.isStakeholderManager())) {
|
||||
continue;
|
||||
}
|
||||
ret.push(result);
|
||||
|
|
Loading…
Reference in New Issue