mirror of
https://github.com/nextcloud/passman.git
synced 2025-02-27 00:43:02 +08:00
fixed disappearing credentials on show-all
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
parent
e211e55024
commit
39bddd1e3c
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@
|
|||
var creds_filtered=[];
|
||||
|
||||
for (var i = 0; i < $scope.active_vault.credentials.length; i++) {
|
||||
if($scope.active_vault.credentials[i].delete_time>0){
|
||||
if($scope.active_vault.credentials[i].delete_time===0){
|
||||
creds_filtered.push($scope.active_vault.credentials[i]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue