web-remote/src/app/components/service/service.component.html

9 lines
315 B
HTML
Raw Normal View History

2018-08-22 20:04:41 +00:00
<h3>Service items:</h3>
<div>
<mat-nav-list>
<a mat-list-item *ngFor="let item of items;let counter = index;" (click)="onItemSelected(counter)" [class.selected]="item.selected">
<mat-icon mat-list-icon>{{ getIcon(item) }}</mat-icon>
2018-08-22 20:04:41 +00:00
<p mat-line>{{item.title}}<p>
</a>
</mat-nav-list>
</div>