[F] Fix null case

This commit is contained in:
Hykilpikonna
2019-10-01 18:40:54 -04:00
parent 6910a7b5ea
commit 2c8b3e0f84
+1 -1
View File
@@ -236,7 +236,7 @@ export default class App extends Vue
{
for (const course of this.filteredCourses)
{
if (course.grading.method == undefined)
if (course.grading == undefined)
{
return false;
}