All files / src/app/extensions/punchout/pages/account-punchout-create account-punchout-create-page.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 151x                            
<div *ngIf="selectedType$ | async as selectedType">
  <h1>{{ 'account.punchout.create.heading' | translate : { '0': selectedType } }}</h1>
 
  <ish-error-message [error]="error$ | async" />
 
  <p>{{ 'account.punchout.create.description' | translate : { '0': selectedType } }}</p>
 
  <div class="row">
    <div class="col-md-10 col-xl-8">
      <ish-punchout-user-form [punchoutType]="selectedType" (submitUser)="submitForm($event)" />
    </div>
  </div>
</div>
<ish-loading *ngIf="loading$ | async" />