1
0
mirror of https://github.com/bitwarden/browser synced 2026-03-01 19:11:22 +00:00

feat(change-password-component): Change Password Update [18720] - Committing intermediate changes.

This commit is contained in:
Patrick Pimentel
2025-06-09 09:30:48 -06:00
parent 2f41f21913
commit bd13e3b4b5
9 changed files with 29 additions and 23 deletions

View File

@@ -31,9 +31,9 @@ export class AnonLayoutComponent implements OnInit, OnChanges {
return ["tw-h-full"];
}
@Input() title?: string;
@Input() subtitle?: string;
@Input() icon?: Icon;
@Input() title: string;
@Input() subtitle: string;
@Input() icon: Icon;
@Input() showReadonlyHostname?: boolean;
@Input() hideLogo: boolean = false;
@Input() hideFooter: boolean = false;
@@ -56,8 +56,8 @@ export class AnonLayoutComponent implements OnInit, OnChanges {
protected logo = BitwardenLogo;
protected year: string;
protected clientType: ClientType;
protected hostname?: string;
protected version?: string;
protected hostname: string;
protected version: string;
protected hideYearAndVersion = false;