Created
February 11, 2019 15:17
-
-
Save jkyoutsey/a039ef2f96c97aa8cbea0da67b1def8d to your computer and use it in GitHub Desktop.
Angular Coverage Metrics Lie Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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