Skip to content

Commit

Permalink
Make updates for Change Owner in Transfers
Browse files Browse the repository at this point in the history
  • Loading branch information
dimak1 committed Oct 24, 2023
1 parent ce5dc70 commit 7cb5045
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,21 @@
<div v-else>
<label class="generic-label" for="org-name">
Business or Organization Name
<v-tooltip
v-if="disableNameFields"
top
content-class="top-tooltip pa-5"
transition="fade-transition"
>
<template v-slot:activator="{ on }">
<v-icon class="mt-n1" color="primary" v-on="on">
mdi-information-outline
</v-icon>
</template>
{{ disabledNameEditTooltip }}
</v-tooltip>
</label>
<v-row>
<v-row v-if="!isCurrentOwner(owner)">
<v-col>
<p>
You can find the full legal name of an active B.C. business by entering the name
Expand Down Expand Up @@ -178,7 +191,9 @@
filled
id="org-name"
ref="orgNameSearchField"
label="Find or enter the Full Legal Name of the Business or Organization"
:label="isCurrentOwner(owner)
? 'Full Legal Name of Business or Organization'
: 'Find or enter the Full Legal Name of the Business or Organization'"
v-model="searchValue"
persistent-hint
:rules="orgNameRules"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
v-on="on"
:id="role.id"
:class="role.class"
:disabled="isDisabledRadio(role.model)"
:disabled="isDisabledRadio(role.model) && selectedPartyType !== role.model"
v-model="role.model"
>
<template v-slot:label>
Expand Down

0 comments on commit 7cb5045

Please sign in to comment.