1
0
mirror of https://github.com/bitwarden/web synced 2025-12-15 07:43:16 +00:00

org existance check

This commit is contained in:
Kyle Spearrin
2017-04-18 10:24:47 -04:00
parent 3728f012d7
commit dc0bf54401

View File

@@ -40,6 +40,6 @@ angular
}; };
$scope.isOrgOwner = function (org) { $scope.isOrgOwner = function (org) {
return org.type === 0; return org && org.type === 0;
}; };
}); });