mirror of
https://github.com/nextcloud/passman.git
synced 2025-12-16 21:27:33 +08:00
FIX grunt build expected === instead of ==
This commit is contained in:
parent
e1e0ec7a76
commit
fce2fa835d
1 changed files with 2 additions and 2 deletions
|
|
@ -385,10 +385,10 @@
|
|||
var found=false;
|
||||
var credList=$rootScope.vaultCache[$scope.active_vault.guid].credentials;
|
||||
for (var i = 0; i < credList.length; i++) {
|
||||
if(credList[i].credential_id==credential.credential_id){
|
||||
if (credList[i].credential_id === credential.credential_id) {
|
||||
$rootScope.vaultCache[$scope.active_vault.guid].credentials[i]=credential;
|
||||
found=true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(!found){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue