Skip to content

Commit

Permalink
removed Copies and Where from batch confirm for TVR Delete and ARC st…
Browse files Browse the repository at this point in the history
…udents, and removed select students section from TVR_DELETE
  • Loading branch information
suzalflueck committed Aug 19, 2024
1 parent 7d61f24 commit c3fdd8e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions frontend/src/components/Batch/Batch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@
batch.details['what'] != 'DISTRUN_YE' &&
batch.details['what'] != 'DISTRUN_SUPP' &&
batch.details['what'] != 'ARC_STUDENTS' &&
batch.details['what'] != 'TVR_DELETE' &&
batch.details['what'] != 'CERT_REGEN'
"
>
Expand Down
11 changes: 9 additions & 2 deletions frontend/src/components/Batch/BatchConfimInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@
>
<ul>
<li v-if="typeLabel"><strong>Run Type: </strong>{{ typeLabel }}</li>
<li v-if="details.copies">
<li
v-if="
details.copies &&
details.what != 'ARC_STUDENTS' &&
details.what != 'TVR_DELETE'
"
>
<strong>Copies: </strong>{{ details.copies }}
</li>
<li v-if="details.who">
Expand Down Expand Up @@ -122,7 +128,8 @@
details.what != 'REGALG' &&
details.what != 'TVRRUN' &&
details.what != 'CERT_REGEN' &&
details.what != 'ARC_STUDENTS'
details.what != 'ARC_STUDENTS' &&
details.what != 'TVR_DELETE'
"
>
<strong>Where: </strong>
Expand Down

0 comments on commit c3fdd8e

Please sign in to comment.