1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-22 07:50:04 +02:00

PM-13820 - RegistrationStartSecondaryComp - add bitLink to link (#11626)

This commit is contained in:
Jared Snider 2024-10-18 15:08:08 -04:00 committed by GitHub
parent 81d1274111
commit 496bc74b51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,4 @@
<span
>{{ "alreadyHaveAccount" | i18n }} <a [routerLink]="loginRoute">{{ "logIn" | i18n }}</a></span
>{{ "alreadyHaveAccount" | i18n }}
<a [routerLink]="loginRoute" bitLink>{{ "logIn" | i18n }}</a></span
>

View File

@ -4,6 +4,7 @@ import { ActivatedRoute, RouterModule } from "@angular/router";
import { firstValueFrom } from "rxjs";
import { JslibModule } from "@bitwarden/angular/jslib.module";
import { LinkModule } from "@bitwarden/components";
/**
* RegistrationStartSecondaryComponentData
@ -17,7 +18,7 @@ export interface RegistrationStartSecondaryComponentData {
standalone: true,
selector: "auth-registration-start-secondary",
templateUrl: "./registration-start-secondary.component.html",
imports: [CommonModule, JslibModule, RouterModule],
imports: [CommonModule, JslibModule, RouterModule, LinkModule],
})
export class RegistrationStartSecondaryComponent implements OnInit {
loginRoute: string;