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 28038cc commit 9594684Copy full SHA for 9594684
projects/design-angular-kit/src/lib/components/core/link/link.component.html
@@ -1,9 +1,9 @@
1
@if (!externalLink) {
2
- <a [id]="id" [class]="class" [routerLinkActive]="'active'" [routerLink]="(disabled ? null : href)!">
+ <a [id]="id" [class]="class" [routerLinkActive]="'active'" [routerLink]="(disabled ? null : href)!" style="cursor: pointer">
3
<ng-container *ngTemplateOutlet="linkContent"></ng-container>
4
</a>
5
} @else {
6
- <a [id]="id" [class]="class" [attr.href]="disabled ? null : href">
+ <a [id]="id" [class]="class" [attr.href]="disabled ? null : href" style="cursor: pointer">
7
8
9
}
0 commit comments