Skip to content

Instantly share code, notes, and snippets.

@jkyoutsey
Created February 11, 2019 15:17
Show Gist options
  • Save jkyoutsey/a039ef2f96c97aa8cbea0da67b1def8d to your computer and use it in GitHub Desktop.
Save jkyoutsey/a039ef2f96c97aa8cbea0da67b1def8d to your computer and use it in GitHub Desktop.
Angular Coverage Metrics Lie Template
<div *ngIf="hasData(); else nodata">
<div *ngFor="let item of data"
class="item"
(click)="delete(item)">
{{ item }}
</div>
</div>
<ng-template #nodata>
No data
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment