@if(contactService.isContactDetailsView || contactService.isContactNewView) { } @else {
@if (contactService.contacts().length === 0) {
apps_outage

No contacts found

} @else { @for (column of columns; track column) { {{ column.header }} @if (column.columnDef === 'name') {
{{ row.name }}
{{ row.userFriendlyTypes.join(" • ") }}
} @else { {{ column.cell(row) }} }
}
}
}