1
0
mirror of https://github.com/bitwarden/web synced 2025-12-16 08:13:22 +00:00

resolve lint errors

This commit is contained in:
Kyle Spearrin
2017-03-21 23:07:38 -04:00
parent 715b91ab96
commit dde20f4451
4 changed files with 7 additions and 7 deletions

View File

@@ -87,16 +87,16 @@ angular
profile.Organizations = [];
}
var org = {
var o = {
id: org.Id,
name: org.Name,
key: org.Key,
status: org.Status
};
profile.organizations.push(org);
profile.organizations.push(o);
_userProfile = profile;
cryptoService.addOrgKey(org);
cryptoService.addOrgKey(o);
}
};