Skip to content

Commit 947f174

Browse files
committed
Extended ScheduledSession objects were not initialized correctly, so un-extending did not work. Fixes bug ietf-tools#1401. Commit ready for merge.
- Legacy-Id: 7732
1 parent a2fd7f1 commit 947f174

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

static/js/agenda/agenda_helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function style_empty_slots(){
7777

7878
}
7979

80-
var __debug_load_events = false;
80+
var __debug_load_events = true;
8181
/* this pushes every event into the agendas */
8282
function load_events(){
8383
var slot_id;

static/js/agenda/agenda_listeners.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ function extend_slot(event) {
308308
// need to create new scheduledsession
309309
var new_ss = make_ss({ "session_id" : session.session_id,
310310
"timeslot_id": slot.following_timeslot.timeslot_id,
311-
"extended_from_id" : current_scheduledslot.scheduledsession_id});
311+
"extendedfrom_id" : current_scheduledslot.scheduledsession_id});
312312
// make_ss also adds to slot_status.
313313
new_ss.saveit();
314314

0 commit comments

Comments
 (0)