All files / src/app/extensions/store-locator/shared/store-address store-address.component.html

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 191x                                    
<address>
  <div *ngIf="store.name">{{ store.name }}</div>
  <div *ngIf="store.address">{{ store.address }}</div>
  <div *ngIf="store.postalCode || store.city">{{ store.postalCode }} {{ store.city }}</div>
  <div *ngIf="store.country">{{ store.country }}</div>
  <div *ngIf="store.phone">
    <fa-icon [icon]="['fas', 'phone']" class="pr-1" />
    <a href="tel:{{ store.phone }}">{{ store.phone }}</a>
  </div>
  <div *ngIf="store.fax">
    <fa-icon [icon]="['fas', 'fax']" class="pr-1" />
    <span>{{ store.fax }}</span>
  </div>
  <div *ngIf="store.email">
    <fa-icon [icon]="['fas', 'envelope']" class="pr-1" />
    <a href="mailto:{{ store.email }}">{{ store.email }}</a>
  </div>
</address>