Skip to content

Commit

Permalink
25066-Update-allowable-BEN-conversions (#790)
Browse files Browse the repository at this point in the history
* 25066-Update-allowable-BEN-conversions

* 25066-Lint fixes
  • Loading branch information
meawong authored Jan 2, 2025
1 parent 6f48d4f commit 984098c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 29 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "name-request",
"version": "5.5.17",
"version": "5.5.18",
"private": true,
"appName": "Name Request UI",
"sbcName": "SBC Common Components",
Expand Down
51 changes: 25 additions & 26 deletions app/src/components/existing-request/nr-approved-gray-box.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,31 @@
class="my-1"
>
<div
v-if="isAllowAlterOnline"
v-if="!isAllowAlterOnline && !getIsLearBusiness"
class="contact-registries mt-30"
>
<p>To complete this alteration, please contact us at:</p>
<p>
<v-icon small>
mdi-phone
</v-icon>&nbsp;Canada and U.S. Toll Free:
<a href="tel:+1877-526-1526">1-877-526-1526</a>
</p>
<p>
<v-icon small>
mdi-phone
</v-icon>&nbsp;Victoria Office:
<a href="tel:250-387-7848">250-387-7848</a>
</p>
<p>
<v-icon small>
mdi-email
</v-icon>&nbsp;Email:
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div
v-else
class="d-flex justify-center"
>
<v-btn
Expand All @@ -137,31 +161,6 @@
<strong>Alter Now</strong>
</v-btn>
</div>

<div
v-else
class="contact-registries mt-30"
>
<p>To complete this alteration, please contact us at:</p>
<p>
<v-icon small>
mdi-phone
</v-icon>&nbsp;Canada and U.S. Toll Free:
<a href="tel:+1877-526-1526">1-877-526-1526</a>
</p>
<p>
<v-icon small>
mdi-phone
</v-icon>&nbsp;Victoria Office:
<a href="tel:250-387-7848">250-387-7848</a>
</p>
<p>
<v-icon small>
mdi-email
</v-icon>&nbsp;Email:
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>

<div
Expand Down
3 changes: 1 addition & 2 deletions app/src/components/new-request/search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
/>
</template>

<NumberedCompanyBullets v-if="isNumberedCompany" />
<NumberedCompanyBullets v-if="isNumberedCompany && !isAlterOnline(getConversionType) && !getIsLearBusiness" />
</template>

<!-- Restoration / Reinstatement flow -->
Expand Down Expand Up @@ -530,7 +530,6 @@ export default class Search extends Mixins(CommonMixin, NrAffiliationMixin, Sear
if (
this.isConversion &&
this.isNumberedCompany &&
this.isAlterOnline(this.getConversionType) &&
this.getIsLearBusiness
) return true
Expand Down

0 comments on commit 984098c

Please sign in to comment.