Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2017-02-18 17:30:46 +0300
committerbrantje <brantje@gmail.com>2017-02-22 20:02:55 +0300
commitca4f6dfeaf033a9161294ccf6999b96decf69bcd (patch)
tree6025b56cb67cc2c3eb20e519fa36042ebb250556 /js/app/directives
parent86be5a270ecfd2f03568b99ed4a74db983348518 (diff)
Fix selected tag filter doesn't stick after returning from sharing or editing (Fixes #255)
Diffstat (limited to 'js/app/directives')
-rw-r--r--js/app/directives/credentialcounter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/app/directives/credentialcounter.js b/js/app/directives/credentialcounter.js
index 90eefaa3..c637e848 100644
--- a/js/app/directives/credentialcounter.js
+++ b/js/app/directives/credentialcounter.js
@@ -48,7 +48,7 @@
if(!scope.vault.hasOwnProperty('credentials')){
return;
}
-
+
angular.forEach(scope.vault.credentials, function (credential) {
var pos = scope.filteredCredentials.map(function(c) { return c.guid; }).indexOf(credential.guid);