Skip to content

Commit

Permalink
Merge pull request #1310 from BCStudentSoftwareDevTeam/fix_withdrawal…
Browse files Browse the repository at this point in the history
…_1239

Added in a let to fix withdrawals on chrome
  • Loading branch information
BrianRamsay committed Aug 22, 2024
2 parents e6e36b7 + 69680b5 commit 36dcf45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/static/js/slcManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function renew(){
}
function withdraw(){
// uses hidden label to withdraw course
courseID = $("#courseID").val();
let courseID = $("#courseID").val();
$.ajax({
url: `/serviceLearning/withdraw/${courseID}`,
type: "POST",
Expand Down

0 comments on commit 36dcf45

Please sign in to comment.