Don't show 'Curated by' in case of empty array of managers

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-connect-portal/trunk@51571 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
sofia.baltzi 2018-03-29 11:09:00 +00:00
parent 76d8ef7d80
commit ec13bdc104
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@
</span>
</div>
<p>
<span *ngIf="community.managers != null && community.managers[0] != ''"> Curated by:
<span *ngIf="community.managers != null && community.managers[0] != '' && community.managers[0] != null"> Curated by:
<span *ngFor='let manager of community.managers; let i = index'>{{manager.substr(0, manager.indexOf('@'))}}<span *ngIf="manager.includes('@') == 0">{{manager}}</span><span *ngIf="i<(community.managers.length-1)">,</span>
</span>
</span>