Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed May 20, 2017
1 parent cfb2a4d commit 489b93d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/vault/vaultShareLoginController.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
var collections = {};
if ($event.target.checked) {
for (var i = 0; i < $scope.collections.length; i++) {
if ($scope.model.organizationId && $scope.collections[i].organizationId === $scope.model.organizationId
&& !$scope.collections[i].readOnly) {
if ($scope.model.organizationId && $scope.collections[i].organizationId === $scope.model.organizationId &&
!$scope.collections[i].readOnly) {
collections[$scope.collections[i].id] = true;
}
}
Expand Down

0 comments on commit 489b93d

Please sign in to comment.