diff --git a/src/app/vault/ciphers.component.ts b/src/app/vault/ciphers.component.ts index 3f4d3215f1..887ce7dc1b 100644 --- a/src/app/vault/ciphers.component.ts +++ b/src/app/vault/ciphers.component.ts @@ -125,7 +125,7 @@ export class CiphersComponent extends BaseCiphersComponent implements OnDestroy } async copy(cipher: CipherView, value: string, typeI18nKey: string, aType: string) { - if (value == null || !this.displayTotpCopyButton(cipher)) { + if (value == null || aType === 'TOTP' && !this.displayTotpCopyButton(cipher)) { return; } else if (value === cipher.login.totp) { value = await this.totpService.getCode(value);