PM-13820 - RegistrationStartSecondaryComp - add bitLink to link (#11626)
This commit is contained in:
parent
81d1274111
commit
496bc74b51
|
@ -1,3 +1,4 @@
|
|||
<span
|
||||
>{{ "alreadyHaveAccount" | i18n }} <a [routerLink]="loginRoute">{{ "logIn" | i18n }}</a></span
|
||||
>{{ "alreadyHaveAccount" | i18n }}
|
||||
<a [routerLink]="loginRoute" bitLink>{{ "logIn" | i18n }}</a></span
|
||||
>
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue