We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c4cbc2 commit 6174785Copy full SHA for 6174785
app/scripts/services/company.js
@@ -54,7 +54,7 @@ angular.module('crunchinatorApp.models').service('Company', function(Model, API_
54
'byInvestors': function() {
55
var ids = this.filterData.investorIds;
56
this.dimensions.byInvestors.filter(function(investorIds) {
57
- return (ids.length === 0 || _.intersection(investorIds[0], ids).length > 0);
+ return (ids.length === 0 || _.intersection(investorIds, ids).length > 0);
58
});
59
},
60
'byId': function() {
0 commit comments