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

[PM-730] Corrected EventType when copying password (#5229)

* [PM-730] Corrected EventType when copying password

* [PM-730] Corrected copy password and totp events
This commit is contained in:
aj-rosado
2023-04-27 16:46:48 +01:00
committed by GitHub
parent def3b1436d
commit 525de3bfd2
5 changed files with 14 additions and 23 deletions

View File

@@ -857,11 +857,10 @@ export class VaultComponent implements OnInit, OnDestroy {
this.i18nService.t("valueCopied", this.i18nService.t(typeI18nKey))
);
if (field === "password" || field === "totp") {
this.eventCollectionService.collect(
EventType.Cipher_ClientToggledHiddenFieldVisible,
cipher.id
);
if (field === "password") {
this.eventCollectionService.collect(EventType.Cipher_ClientCopiedPassword, cipher.id);
} else if (field === "totp") {
this.eventCollectionService.collect(EventType.Cipher_ClientCopiedHiddenField, cipher.id);
}
}