Fix bug in showing the time of other sessions of the same group in the

new meeting schedule editor
 - Legacy-Id: 18022
This commit is contained in:
Ole Laursen 2020-06-22 12:31:39 +00:00
parent a70ece9a34
commit ab178173f4

View file

@ -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"));
});