Skip to content

Commit

Permalink
fix(app): weekend meeting schedule export
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao committed Jun 19, 2024
1 parent f82c286 commit 8c5b307
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/current/classes/Schedules.js
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ SchedulesClass.prototype.WeekendMeetingData = function (startWeek, endWeek) {
schedule.weekend_meeting_date = WMDate;
schedule.weekend_meeting_date_formatted = WMDateFormatted;

const publicTalks = S34s.talks();
const publicTalks = S34s.talks;
const currentTalk = publicTalks.find((record) => record.talk_number === schedule.public_talk);
schedule.public_talk_title = currentTalk ? currentTalk.talk_title : '';
schedule.public_talk_number = currentTalk ? `No. ${currentTalk.talk_number}` : '';
Expand Down
2 changes: 1 addition & 1 deletion src/current/classes/VisitingSpeakers.js
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ VisitingSpeakersClass.prototype.incomingSpeakersTalks = function (talk) {

const talks = [];

const allTalks = S34s.talks();
const allTalks = S34s.talks;

for (const talk of tmpTalks) {
const obj = {};
Expand Down

0 comments on commit 8c5b307

Please sign in to comment.