3 Commits
2.0.2 ... 2.0.3

Author SHA1 Message Date
9362d110a5 Merge branch 'release/2.0.3' 2018-05-29 01:11:46 -04:00
709caf208a - Profiles service mapping 2018-05-29 01:11:27 -04:00
73f456ed00 Merge tag '2.0.2' into develop
no message
2018-05-29 01:08:07 -04:00

View File

@@ -55,7 +55,7 @@ export class ProfileService {
data => { data => {
this.profiles = {}; this.profiles = {};
this.profiles[type] = data; this.profiles[type] = data;
this.profiles.reduce((map, profile, i) => { this.profiles[type].reduce((map, profile, i) => {
map[profile._id] = i; map[profile._id] = i;
return map; return map;
}, this.idMap[type]); }, this.idMap[type]);