Skip to content

Commit

Permalink
Merge pull request #218 from TWpower/fix/remove-isPrearranged-meeting
Browse files Browse the repository at this point in the history
Fix only show June 2th and 4th meeting
  • Loading branch information
TWpower authored May 26, 2017
2 parents d1ae0c9 + cfb91f5 commit 52ff1a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linku_frontend/linku/src/sagas/meeting.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function* fetchMeetingCardInfos(action){
try{
yield put(actions.requestMeetingCardInfos());
let meetings = [];
meetings.push(yield [call(service.getCurrentMeetingInfos)]);
meetings.push(yield [call(service.getPrearrangedMeetingInfos)]);
yield put(actions.receiveMeetingCardInfos(meetings));
}catch(e){
console.log(e);
Expand Down

0 comments on commit 52ff1a2

Please sign in to comment.