Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

26218 - Clicking on File Now invoking browser alert for a Court Order… #725

Merged
merged 4 commits into from
Mar 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/views/CourtOrder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,7 @@ export default class CourtOrderView extends Mixins(DateMixin, FilingMixin, Commo

if (!this.isPageValid) {
this.showErrors = true
this.saving = false
await this.validateAndScroll(this.validFlags, this.validComponents)
return
}
Expand Down Expand Up @@ -595,7 +596,10 @@ export default class CourtOrderView extends Mixins(DateMixin, FilingMixin, Commo
})

this.saving = false
if (success) { this.navigateToBusinessDashboard(this.getIdentifier) }
if (success) {
this.haveChanges = false
this.navigateToBusinessDashboard(this.getIdentifier)
}
}

/**
Expand Down
Loading