import {Component, Input} from '@angular/core'; @Component({ selector: 'organization-title', template: `

{{(organization.shortName ? ('[' + organization.shortName + '] ') : '')}}{{organization.name}}

` }) export class OrganizationTitleFormatterComponent { @Input() organization: any; public url: string; }