1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

display site count for folders in optimized view as well

This commit is contained in:
Kyle Spearrin
2017-01-04 23:29:08 -05:00
parent 8a8e2bdf80
commit fef2d38101
4 changed files with 25 additions and 1 deletions

View File

@@ -60,6 +60,18 @@
$rootScope.vaultFolders = decFolders;
$rootScope.vaultLogins = decLogins;
// compute site count for each folder
for (var i = 0; i < $rootScope.vaultFolders.length; i++) {
var siteCount = 0;
for (var j = 0; j < $rootScope.vaultLogins.length; j++) {
if ($rootScope.vaultLogins[j].folderId == $rootScope.vaultFolders[i].id) {
siteCount++;
}
}
$rootScope.vaultFolders[i].siteCount = siteCount;
}
if (!delayLoad) {
setScrollY();
}