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

fix(change-password): [PM-23811] Callout Missing Bug (#15638)

* fix(change-password): [PM-23811] Tooltip Missing Bug - Fixed import to show tooltip.

* fix(change-password-component): Change Password Update [18720] - Changed to use common module.

(cherry picked from commit 35819aa2e3)
This commit is contained in:
Patrick-Pimentel-Bitwarden
2025-07-16 14:14:03 -04:00
committed by Patrick Pimentel
parent b0ed4032f3
commit 3692fcbfda

View File

@@ -1,3 +1,4 @@
import { CommonModule } from "@angular/common";
import { Component, Input, OnInit } from "@angular/core";
import { firstValueFrom } from "rxjs";
@@ -41,7 +42,7 @@ import { ChangePasswordService } from "./change-password.service.abstraction";
@Component({
selector: "auth-change-password",
templateUrl: "change-password.component.html",
imports: [InputPasswordComponent, I18nPipe, CalloutComponent],
imports: [InputPasswordComponent, I18nPipe, CalloutComponent, CommonModule],
})
export class ChangePasswordComponent implements OnInit {
@Input() inputPasswordFlow: InputPasswordFlow = InputPasswordFlow.ChangePassword;