1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

[PM-3792] Copying Verification Code Using the Context Menu for a Vault Item with Re-prompt Copies the TOTP Seed Instead of the Code (#6200)

This commit is contained in:
Cesar Gonzalez
2023-09-07 11:39:56 -05:00
committed by GitHub
parent d3d8e3f0c8
commit fcde0c6420

View File

@@ -179,7 +179,7 @@ export class ViewComponent extends BaseViewComponent {
await this.copy(this.cipher.login.password, "password", "Password");
break;
case COPY_VERIFICATIONCODE_ID:
await this.copy(this.cipher.login.totp, "verificationCodeTotp", "TOTP");
await this.copy(this.totpCode, "verificationCodeTotp", "TOTP");
break;
default:
break;