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 f65f4f9 commit 2848b6bCopy full SHA for 2848b6b
src/tiles/clickable-tile.component.ts
@@ -34,6 +34,7 @@ import { Router } from "@angular/router";
34
(click)="navigate($event)"
35
[attr.href]="disabled ? null : href"
36
[attr.target]="target"
37
+ [attr.rel]="rel ? rel : null"
38
[attr.aria-disabled]="disabled">
39
<ng-content></ng-content>
40
</a>`
@@ -55,6 +56,11 @@ export class ClickableTile {
55
56
*/
57
@Input() target: string;
58
59
+ /**
60
+ * Sets the `rel` attribute on the `cds-clickable-tile` element.
61
+ */
62
+ @Input() rel: string;
63
+
64
/**
65
* Set to `true` to disable the clickable tile.
66
0 commit comments