From 3692fcbfdaf0b494d456c88adcbbe7bfecf96d51 Mon Sep 17 00:00:00 2001 From: Patrick-Pimentel-Bitwarden Date: Wed, 16 Jul 2025 14:14:03 -0400 Subject: [PATCH] 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 35819aa2e347134a1a4d1bb9a7ce331923b3ab1f) --- .../change-password/change-password.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/angular/src/auth/password-management/change-password/change-password.component.ts b/libs/angular/src/auth/password-management/change-password/change-password.component.ts index 78128962384..02738d33321 100644 --- a/libs/angular/src/auth/password-management/change-password/change-password.component.ts +++ b/libs/angular/src/auth/password-management/change-password/change-password.component.ts @@ -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;