We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd80a78 commit 01e710aCopy full SHA for 01e710a
1 file changed
src/app/features/project/overview/components/component-card/component-card.component.html
@@ -3,7 +3,13 @@
3
<h2 class="flex align-items-center gap-2">
4
<osf-icon [iconClass]="component().isPublic ? 'fas fa-lock-open' : 'fas fa-lock'"></osf-icon>
5
6
- <a class="node-title cursor-pointer" (click)="handleNavigate(component().id)">
+ <a
7
+ class="node-title cursor-pointer"
8
+ role="button"
9
+ tabindex="0"
10
+ (click)="handleNavigate(component().id)"
11
+ (keydown.enter)="handleNavigate(component().id)"
12
+ >
13
{{ component().title }}
14
</a>
15
</h2>
@@ -24,6 +30,7 @@ <h2 class="flex align-items-center gap-2">
24
30
<ng-template #item let-item>
25
31
<a
26
32
class="p-menu-item-link"
33
27
34
(mousedown)="handleMenuAction(item.action)"
28
35
(keydown.enter)="handleMenuAction(item.action)"
29
36
>
0 commit comments