Skip to content

Commit ab17817

Browse files
committed
Fix bug in showing the time of other sessions of the same group in the
new meeting schedule editor - Legacy-Id: 18022
1 parent a70ece9 commit ab17817

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/static/ietf/js/edit-meeting-schedule.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jQuery(document).ready(function () {
5656
let scheduledAt = sessions.filter("#session" + this.dataset.othersessionid).closest(".timeslot").data('scheduledatlabel');
5757
let timeElement = jQuery(this).find(".time");
5858
if (scheduledAt)
59-
timeElement.text(timeElement.data("scheduled").replace("{time}", ));
59+
timeElement.text(timeElement.data("scheduled").replace("{time}", scheduledAt));
6060
else
6161
timeElement.text(timeElement.data("notscheduled"));
6262
});

0 commit comments

Comments
 (0)