1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 03:03:26 +00:00

wrap span in button

This commit is contained in:
Alex
2025-09-04 16:00:19 -04:00
parent 08edef8096
commit 552874fa46

View File

@@ -35,16 +35,12 @@
<app-vault-icon *ngIf="row.ciphers.length > 0" [cipher]="row.ciphers[0]"></app-vault-icon>
</td>
<td
class="tw-cursor-pointer"
[ngClass]="{ 'tw-bg-primary-100': isDrawerIsOpenForThisRecord(row.applicationName) }"
[tabindex]="0"
role="button"
(click)="showAppAtRiskMembers(row.applicationName)"
(keydown.enter)="showAppAtRiskMembers(row.applicationName)"
(keydown.space)="showAppAtRiskMembers(row.applicationName); $event.preventDefault()"
bitCell
>
<span>{{ row.applicationName }}</span>
<button type="button" (click)="showAppAtRiskMembers(row.applicationName)">
<span>{{ row.applicationName }}</span>
</button>
</td>
<td
bitCell