Skip to content

Commit

Permalink
added isFrozenMhrDueToAffidavit flag to the condition
Browse files Browse the repository at this point in the history
  • Loading branch information
flutistar committed Jul 23, 2024
1 parent 4c6c3c2 commit 0869682
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ppr-ui/src/views/mhrInformation/MhrInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -892,8 +892,9 @@ export default defineComponent({
'Ownership Transfer or Change'
),
isChangeOwnershipBtnDisabled: computed((): boolean => {
if(isRoleStaffReg.value && hasLien.value)
return false
if(isRoleStaffReg.value && hasLien.value && !isFrozenMhrDueToAffidavit.value){
return false
}
const isFrozenMhr = isFrozenMhrDueToAffidavit.value || isFrozenMhrDueToUnitNote.value
Expand Down

0 comments on commit 0869682

Please sign in to comment.