We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee5e85c commit 43cd036Copy full SHA for 43cd036
src/breadcrumb/breadcrumb-item.component.ts
@@ -8,14 +8,8 @@ import {
8
selector: "ibm-breadcrumb-item",
9
template: `
10
<a class="bx--link"
11
- href="/#"
12
- *ngIf="skeleton">
13
- <ng-container *ngTemplateOutlet="content"></ng-container>
14
- </a>
15
-
16
- <a class="bx--link"
17
- href="{{href}}"
18
- *ngIf="!skeleton && href; else content">
+ href="{{skeleton ? href : '/#'}}"
+ *ngIf="skeleton || href; else content">
19
<ng-container *ngTemplateOutlet="content"></ng-container>
20
</a>
21
<ng-template #content>
0 commit comments