Skip to content

Commit

Permalink
Merge pull request #558 from bcgov/GRAD2-2368
Browse files Browse the repository at this point in the history
Grad2 2368
  • Loading branch information
suzalflueck authored Apr 3, 2024
2 parents a48e508 + c00b041 commit cf373bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions frontend/src/components/Batch/Batch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@
size="sm"
variant="primary"
class="btn btn-primary w-100 float-right col-2 p-2"
:disabled="batch.details['who'] == '' || batch.details['who'] == null"
:disabled="!batchIsValid"
>
Download
</b-button>
Expand Down Expand Up @@ -1436,7 +1436,8 @@ export default {
}
if (
this.batch.details["what"] == "DISTRUNUSER" &&
this.batch.details["where"] == "BC Mail" &&
(this.batch.details["where"] == "BC Mail" ||
this.batch.details["where"] == "localDownload") &&
this.batch.details["credential"] == "Blank certificate print" &&
this.batch.details["blankCertificateDetails"].length == 0
) {
Expand All @@ -1445,7 +1446,8 @@ export default {
}
if (
this.batch.details["what"] == "DISTRUNUSER" &&
this.batch.details["where"] == "BC Mail" &&
(this.batch.details["where"] == "BC Mail" ||
this.batch.details["where"] == "localDownload") &&
this.batch.details["credential"] == "Blank transcript print" &&
this.batch.details["blankTranscriptDetails"].length == 0
) {
Expand Down
4 changes: 2 additions & 2 deletions grad-version
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": {
"dev": "1.15.0",
"test": "1.15.0",
"dev": "1.16.0",
"test": "1.16.0",
"prod": "1.15.0"
}
}

0 comments on commit cf373bd

Please sign in to comment.