From ab178173f484a857e10e65d643c0841488583739 Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Mon, 22 Jun 2020 12:31:39 +0000 Subject: [PATCH] Fix bug in showing the time of other sessions of the same group in the new meeting schedule editor - Legacy-Id: 18022 --- ietf/static/ietf/js/edit-meeting-schedule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/static/ietf/js/edit-meeting-schedule.js b/ietf/static/ietf/js/edit-meeting-schedule.js index 13ca65d4c..711502ee0 100644 --- a/ietf/static/ietf/js/edit-meeting-schedule.js +++ b/ietf/static/ietf/js/edit-meeting-schedule.js @@ -56,7 +56,7 @@ jQuery(document).ready(function () { let scheduledAt = sessions.filter("#session" + this.dataset.othersessionid).closest(".timeslot").data('scheduledatlabel'); let timeElement = jQuery(this).find(".time"); if (scheduledAt) - timeElement.text(timeElement.data("scheduled").replace("{time}", )); + timeElement.text(timeElement.data("scheduled").replace("{time}", scheduledAt)); else timeElement.text(timeElement.data("notscheduled")); });