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.
2 parents 7ef5ca5 + a4e8721 commit 61a6c6aCopy full SHA for 61a6c6a
src/breadcrumb/breadcrumb-item.component.ts
@@ -8,7 +8,7 @@ import {
8
selector: "ibm-breadcrumb-item",
9
template: `
10
<a class="bx--link"
11
- href="{{skeleton ? href : '/#'}}"
+ href="{{skeleton ? '/#' : href}}"
12
*ngIf="skeleton || href; else content">
13
<ng-container *ngTemplateOutlet="content"></ng-container>
14
</a>
src/tiles/tile.component.ts
@@ -23,5 +23,5 @@ import {
23
template: `<ng-content></ng-content>`
24
})
25
export class Tile {
26
- @HostBinding("class") tileClass = "bx--tile";
+ @HostBinding("class.bx--tile") tileClass = true;
27
}
0 commit comments