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

fix: [PM-20180] add OrganizationDuo to dialog title function

Fix issue where modal was not displayed when clicking Manage option for 2FA on Organizations. This adds the OrganizationDuo case to the dialogTitle method to properly handle this provider type.

PM-20180
This commit is contained in:
Alec Rippberger
2025-04-14 09:37:52 -05:00
committed by GitHub
parent 8885f5da24
commit f1a2acb0b9

View File

@@ -99,6 +99,7 @@ export class TwoFactorVerifyComponent {
case -1 as TwoFactorProviderType:
return this.i18nService.t("recoveryCodeTitle");
case TwoFactorProviderType.Duo:
case TwoFactorProviderType.OrganizationDuo:
return "Duo";
case TwoFactorProviderType.Email:
return this.i18nService.t("emailTitle");