1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

implement bitLink for password history (#10769)

This commit is contained in:
Nick Krantz
2024-09-03 10:25:10 -05:00
committed by GitHub
parent 87a1742a43
commit 1951b70fd1
2 changed files with 3 additions and 0 deletions

View File

@@ -27,6 +27,7 @@
</p> </p>
<a <a
*ngIf="cipher.hasPasswordHistory && isLogin" *ngIf="cipher.hasPasswordHistory && isLogin"
bitLink
class="tw-font-bold tw-no-underline" class="tw-font-bold tw-no-underline"
routerLink="/cipher-password-history" routerLink="/cipher-password-history"
[queryParams]="{ cipherId: cipher.id }" [queryParams]="{ cipherId: cipher.id }"

View File

@@ -7,6 +7,7 @@ import { CipherType } from "@bitwarden/common/vault/enums";
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view"; import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
import { import {
CardComponent, CardComponent,
LinkModule,
SectionComponent, SectionComponent,
SectionHeaderComponent, SectionHeaderComponent,
TypographyModule, TypographyModule,
@@ -24,6 +25,7 @@ import {
SectionComponent, SectionComponent,
SectionHeaderComponent, SectionHeaderComponent,
TypographyModule, TypographyModule,
LinkModule,
], ],
}) })
export class ItemHistoryV2Component { export class ItemHistoryV2Component {