Fix validation in courseList
[qomet.git] / public / javascripts / courseList.js
index ae1f1d8..238c1fc 100644 (file)
@@ -20,7 +20,7 @@ window.onload = function() {
                                if (!admin)
                                        return;
                                // modal, fill code and description
-                               let error = Validator.checkCode(this.newCourse.code);
+                               let error = Validator.checkObject({code:this.newCourse.code}, "Course");
                                if (!!error)
                                        return alert(error);
                                else