Skip to content

Commit

Permalink
Changed welcomeWeekView to use new wtsEventID from lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Wu committed Sep 9, 2016
1 parent 3a56d43 commit a6c8057
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/welcomeWeek/WelcomeWeekView.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ export default class WelcomeWeekView extends Component {
// Remove event from responses
// Add to row data
if(responseData[j].EventCollege === college.name) {
rowIDs[i].push(responseData[j].EventID);
dataBlob[college.name + ':' + responseData[j].EventID] = responseData.splice(j, 1)[0];
rowIDs[i].push(responseData[j].wtsEventID);
dataBlob[college.name + ':' + responseData[j].wtsEventID] = responseData.splice(j, 1)[0];
--j;
}
}
Expand Down

0 comments on commit a6c8057

Please sign in to comment.