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

copy password from vault listings

This commit is contained in:
Kyle Spearrin
2017-06-08 22:25:01 -04:00
parent 366506555a
commit c094a26cbf
5 changed files with 32 additions and 1 deletions

View File

@@ -57,7 +57,8 @@ angular
favorite: encryptedCipher.Favorite,
edit: encryptedCipher.Edit,
name: _service.decryptProperty(encryptedCipher.Data.Name, key, false),
username: _service.decryptProperty(encryptedCipher.Data.Username, key, true)
username: _service.decryptProperty(encryptedCipher.Data.Username, key, true),
password: _service.decryptProperty(encryptedCipher.Data.Password, key, true)
};
return login;