Skip to content

Commit

Permalink
Merge pull request #559 from bcgov/release/v1.17.0
Browse files Browse the repository at this point in the history
Release/v1.17.0
  • Loading branch information
suzalflueck authored Apr 3, 2024
2 parents be96e0d + cf373bd commit f1871cb
Showing 1 changed file with 5 additions and 3 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

0 comments on commit f1871cb

Please sign in to comment.