1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00: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
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;