Skip to content

Commit

Permalink
Added tooltip for user batch dist run header
Browse files Browse the repository at this point in the history
  • Loading branch information
KentoHyono committed Jan 17, 2025
1 parent 1c88336 commit 88f1411
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions frontend/src/views/BatchProcessing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,17 @@
:sortBy="[{ key: 'displayOrder', order: 'asc' }]"
class="pb-3"
>
<template v-slot:item.description="{ item }">
{{ item.description }}
<v-tooltip max-width="800">
{{ userBatchDistRuleDesc }}
<template v-slot:activator="{ props }">
<v-icon v-bind="props" color="bcGovBlue" small size="18"
>mdi-information</v-icon
>
</template>
</v-tooltip>
</template>
</v-data-table>
<v-table>
<tbody>
Expand Down Expand Up @@ -392,6 +403,10 @@ export default {
distributionBatchRunOptions: [],
PSIBatchRunOptions: [],
yearEndBatchRunOptions: [],
userBatchDistRuleDesc: `If Current Students selected and the User has requested Transcripts, all students with a status of CUR will be selected by school at graduation. \n
If Current Students selected and the User has requested Original Certificate or Reprint Certificate, all students, except 'DEC','MER', with a certificate with a null distribution date will be selected by school at graduation. \n
If Date Range selected, and the User has requested Transcript print, all students, except 'DEC', 'MER', who have completed their program within the date range will be selected by school at graduation. \n
If Date Range selected, and the User has requested Original Certificate or Reprint Certificate, all students, except 'DEC','MER', who have completed their program within the date range will be selected by school of graduation.`
};
},
created() {
Expand Down

0 comments on commit 88f1411

Please sign in to comment.