Skip to content

Commit

Permalink
don't scroll to top if it is staff (#1995)
Browse files Browse the repository at this point in the history
don't scroll to top if it is staff
  • Loading branch information
flutistar authored Jul 30, 2024
1 parent 6741d51 commit 62cc307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ppr-ui/src/views/mhrInformation/MhrInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ export default defineComponent({
? await getMHRegistrationSummary(getMhrInformation.value.mhrNumber, false)
: null
if (!!regSum && !!regSum.lienRegistrationType) {
if (!!regSum && !!regSum.lienRegistrationType && !isRoleStaffReg.value) {
await setLienType(regSum.lienRegistrationType)
await scrollToFirstError(true)
localState.hasLienInfoDisplayed = true
Expand Down

0 comments on commit 62cc307

Please sign in to comment.