2020-07-09 20:19:07 +00:00
|
|
|
{{#each this.breadcrumbs as |breadcrumb index|}}
|
|
|
|
<li class="{{if (eq (inc index) this.breadcrumbs.length) "is-active"}}">
|
2018-06-27 18:25:27 +00:00
|
|
|
{{#if breadcrumb.isPending}}
|
2018-06-28 18:58:38 +00:00
|
|
|
<a href="#" aria-label="loading" data-test-breadcrumb="loading">…</a>
|
2018-06-27 18:25:27 +00:00
|
|
|
{{else}}
|
2020-06-01 19:03:56 +00:00
|
|
|
<LinkTo
|
|
|
|
@params={{breadcrumb.args}}
|
|
|
|
data-test-breadcrumb={{breadcrumb.args.firstObject}}>
|
2018-06-27 18:25:27 +00:00
|
|
|
{{breadcrumb.label}}
|
2020-06-01 19:03:56 +00:00
|
|
|
</LinkTo>
|
2018-06-27 18:25:27 +00:00
|
|
|
{{/if}}
|
2018-06-20 01:07:09 +00:00
|
|
|
</li>
|
|
|
|
{{/each}}
|