diff --git a/frontend/src/components/GraduationStatus/GRADStatus.vue b/frontend/src/components/GraduationStatus/GRADStatus.vue index 8ec84015..b274b5d3 100644 --- a/frontend/src/components/GraduationStatus/GRADStatus.vue +++ b/frontend/src/components/GraduationStatus/GRADStatus.vue @@ -748,12 +748,32 @@ {{ String(studentGradStatus.recalculateGradStatus) }} + + Recalculate Grad Status: + + + + Recalculate Projected Grad: {{ String(studentGradStatus.recalculateProjectedGrad) }} + + Recalculate Projected Grad: + + + + @@ -889,6 +909,10 @@ export default { { text: "Y", value: "Y" }, { text: "N", value: "N" }, ], + recalcFlags: [ + { text: "Y", value: "Y" }, + { text: "null", value: null }, + ], programsWithExpiry: [ "1986-EN", "1996-EN", @@ -1333,6 +1357,16 @@ export default { "consumerEducationRequirementMet", this.studentGradStatus.consumerEducationRequirementMet ); + this.$set( + this.editedGradStatus, + "recalculateGradStatus", + this.studentGradStatus.recalculateGradStatus + ); + this.$set( + this.editedGradStatus, + "recalculateProjectedGrad", + this.studentGradStatus.recalculateProjectedGrad + ); this.validateFields(); },