summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/breadcrumbs/breadcrumbs.component.html
blob: 05232b7fa07554c80e98fb1134b5179990d40d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
<ol *ngIf="crumbs.length"
    class="breadcrumb">
  <li *ngFor="let crumb of crumbs; let last = last"
      [ngClass]="{ 'active': last && finished }"
      class="breadcrumb-item">
    <a *ngIf="!last && crumb.path !== null"
       [routerLink]="crumb.path"
       preserveFragment>{{ crumb.text }}</a>
    <span *ngIf="last || crumb.path === null">{{ crumb.text }}</span>
  </li>
</ol>