1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 02:19:18 +00:00

add password specific header (#18988)

This commit is contained in:
John Harrington
2026-02-16 15:53:46 -07:00
committed by GitHub
parent 460b9ccb67
commit c415beb653

View File

@@ -73,7 +73,6 @@ export class SendAuthComponent implements OnInit {
) {}
ngOnInit() {
this.updatePageTitle();
void this.onSubmit();
}
@@ -226,6 +225,10 @@ export class SendAuthComponent implements OnInit {
pageTitle: { key: "verifyYourEmailToViewThisSend" },
});
}
} else if (authType === AuthType.Password) {
this.anonLayoutWrapperDataService.setAnonLayoutWrapperData({
pageTitle: { key: "sendAccessPasswordTitle" },
});
}
}
}