Skip to content

Commit

Permalink
Update CurrentFeeVerification.vue
Browse files Browse the repository at this point in the history
fixed the back button on mtfi
  • Loading branch information
jenbeckett authored Oct 31, 2023
1 parent 016c96e commit d8aae8d
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions frontend/src/components/mtfi/CurrentFeeVerification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -984,18 +984,13 @@ export default {
this.$router.push(this.nextPath);
}
},
previous() {
console.log('combined dates: ');
console.log(this.chosenDates);
console.log('new dates: ');
console.log(this.CCFRIFacilityModel.dates);
// if(this.organizationProviderType == 'FAMILY'){
// this.$router.push(changeUrl(PATHS.MTFI_INFO, this.$route.params.changeRecGuid, CHANGE_TYPES.MTFI ));
// }
// else{
// this.$router.push(this.previousPath);
// }
previous() {
if(this.organizationProviderType == 'FAMILY'){
this.$router.push(changeUrl(PATHS.MTFI_INFO, this.$route.params.changeRecGuid, CHANGE_TYPES.MTFI ));
}
else{
this.$router.push(this.previousPath);
}
},
validateForm() {
Expand Down

0 comments on commit d8aae8d

Please sign in to comment.