Skip to content

Commit

Permalink
Fix to properly display BUS role in HomeOwnerRoles (#1603)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimak1 authored Oct 27, 2023
1 parent 2451a77 commit a718ff9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ export default defineComponent({
} = useTransferOwners()
const localState = reactive({
selectedPartyType: props.partyType
selectedPartyType:
// treat BUS type as IND to properly display selected role
props.partyType === HomeOwnerPartyTypes.OWNER_BUS ? HomeOwnerPartyTypes.OWNER_IND : props.partyType
})
/**
Expand Down

0 comments on commit a718ff9

Please sign in to comment.