Skip to content

Commit

Permalink
Merge pull request #540 from bcgov/release/v1.14.1
Browse files Browse the repository at this point in the history
Release/v1.14.1 - Hold of until release is scheduled
  • Loading branch information
suzalflueck authored Feb 12, 2024
2 parents 2df0249 + 0088b53 commit aee76de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/services/CourseService.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default {
},
getRuleCourseRequirements(rule) {
return ApiService.apiAxios.get(
"/api/v1/course/requirement/rule?rule=" + rule + "&pageNo=0&pageSize=600"
"/api/v1/course/requirement/rule?rule=" + rule + "&pageNo=0&pageSize=2000"
);
},
getCourseRequirements(params) {
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/views/BatchProcessing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1499,6 +1499,10 @@ export default {
this.validationMessage = "Please select a program.";
return;
}
} else if (
this.tabContent[id].details["who"] == "Ministry of Advanced Education"
) {
schools = ["00000000"];
}
let gradDateFrom = this.tabContent[id].details["gradDateFrom"];
let gradDateTo = this.tabContent[id].details["gradDateTo"];
Expand Down

0 comments on commit aee76de

Please sign in to comment.