Skip to content

Commit

Permalink
Merge branch 'development' into PR-Template-Builder
Browse files Browse the repository at this point in the history
  • Loading branch information
bledsoef authored Aug 25, 2024
2 parents 649fd24 + 3f49b13 commit 660fc90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 All @@ -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 660fc90

Please sign in to comment.