Skip to content

Commit 324d1f3

Browse files
author
Suhas Hariharan
authored
Merge pull request #236 from sas-fossdev/fix-hypo-grades
fixed hypo assignment and hypo grades not working due to refactor
2 parents 9d85af0 + 49a087b commit 324d1f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/js/saspowerschoolff.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ function main_page () {
101101
secondSemester: second_semester,
102102
},
103103
}).$mount("#cumulative-gpa");
104-
addHypoGradeCalc(courses);
104+
Promise.all(promises_grade_calc_list).then(_ => {
105+
addHypoGradeCalc(courses);
106+
});
105107
}
106108

107109
function class_page () {

0 commit comments

Comments
 (0)