Skip to content

Commit

Permalink
Merge pull request #191 from ror-community/label-fix
Browse files Browse the repository at this point in the history
Fix label display
  • Loading branch information
lizkrznarich committed Oct 5, 2023
2 parents 30edd8e + 7ffe90a commit 5f2fb6d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/components/organization-item.js
Expand Up @@ -36,9 +36,7 @@ export default Component.extend({
}
this.set('aliases', this.model.get('aliases').join(', '));
this.set('acronyms', this.model.get('acronyms').join(', '));
this.set('labels', this.model.get('labels').map(label => {
return label.label;
}));
this.set('labels', this.model.get('labels').map(label => label.label).join(', '));

if (this.model.get('external_ids.GRID')) {
if (this.model.get('external_ids.GRID').preferred){
Expand Down

0 comments on commit 5f2fb6d

Please sign in to comment.