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

no items in folder/collection

This commit is contained in:
Kyle Spearrin
2017-11-22 12:21:55 -05:00
parent 3563601382
commit d58b422bd0
2 changed files with 9 additions and 4 deletions

View File

@@ -193,13 +193,13 @@
$scope.addCipher();
});
$scope.addCipher = function (folder, favorite) {
$scope.addCipher = function (grouping, favorite) {
var addModel = $uibModal.open({
animation: true,
templateUrl: 'app/vault/views/vaultAddCipher.html',
controller: 'vaultAddCipherController',
resolve: {
selectedFolder: function () { return folder; },
selectedFolder: function () { return grouping.folder ? grouping : null; },
checkedFavorite: function () { return favorite; }
}
});