mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
vault listing page fixes
This commit is contained in:
@@ -51,11 +51,11 @@
|
||||
});
|
||||
promises.push(folderPromise);
|
||||
|
||||
var loginPromise = $q.when(loginService.getAllDecrypted());
|
||||
loginPromise.then(function (logins) {
|
||||
decLogins = logins;
|
||||
var cipherPromise = loginService.getAllDecrypted();
|
||||
cipherPromise.then(function (ciphers) {
|
||||
decLogins = ciphers;
|
||||
});
|
||||
promises.push(loginPromise);
|
||||
promises.push(cipherPromise);
|
||||
|
||||
$q.all(promises).then(function () {
|
||||
$scope.loaded = true;
|
||||
|
||||
Reference in New Issue
Block a user