We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef61630 commit b27ca57Copy full SHA for b27ca57
1 file changed
schedule.js
@@ -1012,9 +1012,7 @@ async function showLessonInfo(lessonHTML, lesson) {
1012
if (!lesson.content) {
1013
lesson.content = "";
1014
}
1015
- let warning = [lesson.changeDescription, lesson.schedulerRemark, lesson.content]
1016
- .map(x => String(x || "").replace(/NaN/g, ""))
1017
- .join("");
+ let warning = lesson.changeDescription + lesson.schedulerRemark + lesson.content;
1018
1019
if (lesson.cancelled == true) {
1020
lesson.appointmentType = "cancelled";
0 commit comments