[O] Ignore 0 when calculating the score

This commit is contained in:
Hykilpikonna
2019-10-01 19:02:41 -04:00
parent 1aff2b0a68
commit 31b3814b1e
@@ -151,7 +151,7 @@ export default class GraphOverall extends Vue
}
// Add average to the row
row[course.name] = score * 100;
if (score != 0) row[course.name] = score * 100;
}
});