Skip to content

Commit

Permalink
Merge pull request #3052 from uw-it-aca/qa
Browse files Browse the repository at this point in the history
Qa
  • Loading branch information
fanglinfang authored Jan 4, 2024
2 parents c2fb322 + e3d9615 commit d6b3cd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions myuw_vue/components/_common/course/textbook.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ export default {
return "4";
},
uwtTextbookUrl() {
// MUWM-5311
// MUWM-5311, MUWM-5326
return (
"https://www.bkstr.com/webApp/discoverView?" +
"bookstore_id-1=2335&div-1=&term_id-1=" +
String(this.section.year) + this.termId +
"&dept-1=" + encodeURIComponent(this.section.curriculum_abbr) +
"&dept-1=" + encodeURIComponent(this.section.curriculum_abbr.replace(" ", "-")) +
"&course-1=" + this.section.course_number +
"&section-1=" + this.section.section_id);
},
Expand Down
4 changes: 2 additions & 2 deletions myuw_vue/mixins/courses.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ export default {
}
},
viewUWTBookUrl(bookSection) {
// MUWM-5311
// MUWM-5311, MUWM-5326
return ("https://www.bkstr.com/webApp/discoverView?" +
"bookstore_id-1=2335&div-1=" +
"&term_id-1=" + bookSection.term +
"&dept-1=" + encodeURIComponent(bookSection.curriculum) +
"&dept-1=" + encodeURIComponent(bookSection.curriculum.replace(" ", "-")) +
"&course-1=" + bookSection.courseNumber +
"&section-1=" + bookSection.sectionId);
}
Expand Down

0 comments on commit d6b3cd9

Please sign in to comment.