Skip to content

Commit

Permalink
Merge pull request #1312 from BCStudentSoftwareDevTeam/fix_renew_1257
Browse files Browse the repository at this point in the history
Added in a let to fix renewals on chrome
  • Loading branch information
BrianRamsay committed Aug 22, 2024
2 parents 36dcf45 + 6ceed4f commit 3f49b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/static/js/slcManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ function changeAction(action){
}

function renew(){
courseID = $("#courseID").val();
termID = $('#renewTerm').find(":selected").val()
let courseID = $("#courseID").val();
let termID = $('#renewTerm').find(":selected").val()
$.ajax({
url: `/serviceLearning/renew/${courseID}/${termID}/`,
type: "POST",
Expand Down

0 comments on commit 3f49b13

Please sign in to comment.