Skip to content
Snippets Groups Projects
Commit 3d614f3e authored by xamgore's avatar xamgore
Browse files

Fix of lowercase property to CamelCase

parent 069be914
Branches
Tags
No related merge requests found
......@@ -84,7 +84,7 @@ $(function() {
jSelectDiscipline.html("<option>" + langNotChosen + "</option>");
for (i in d.data) {
discipline = d.data[i];
if (discipline.type !== 'exam')
if (discipline.Type !== 'exam')
continue;
jSelectDiscipline.append("<option value='" + discipline.ID + "'>" + discipline.SubjectName + "</option>");
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment