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

Fix TOTP copy action (#2774)

Fixes an issue where password copy was sometimes populated with a totp
This commit is contained in:
Matt Gibson
2022-06-02 14:40:36 -04:00
committed by GitHub
parent 8896cf0dc0
commit d026c99361

View File

@@ -52,7 +52,7 @@ export class ActionButtonsComponent {
if (value == null || (aType === "TOTP" && !this.displayTotpCopyButton(cipher))) {
return;
} else if (value === cipher.login.totp) {
} else if (aType === "TOTP") {
value = await this.totpService.getCode(value);
}