Skip to content

Commit

Permalink
- app version = 4.10.3
Browse files Browse the repository at this point in the history
- do not show Confirm Name Change checkbox for firm corrections
  • Loading branch information
Severin Beauvais committed Jul 31, 2024
1 parent abb0783 commit b653559
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "business-edit-ui",
"version": "4.10.2",
"version": "4.10.3",
"private": true,
"appName": "Edit UI",
"sbcName": "SBC Common Components",
Expand Down
8 changes: 4 additions & 4 deletions src/components/common/PeopleAndRoles/OrgPerson.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<!-- Confirm name change -->
<v-expand-transition>
<article
v-if="hasNameChanged(orgPerson)"
v-if="hasNameChanged(orgPerson) && !isFirmCorrectionFiling"
class="confirm-name-change mt-6"
>
<v-checkbox
Expand Down Expand Up @@ -273,7 +273,7 @@
<!-- Confirm name change -->
<v-expand-transition>
<v-checkbox
v-if="hasNameChanged(orgPerson)"
v-if="hasNameChanged(orgPerson) && !isFirmCorrectionFiling"
id="confirm-name-change-checkbox"
v-model="orgPerson.confirmNameChange"
class="mt-6 pt-0"
Expand Down Expand Up @@ -818,8 +818,8 @@ export default class OrgPerson extends Mixins(CommonMixin, OrgPersonMixin) {
/** Returns True if person name or org name has changed from its original properties. */
hasNameChanged (orgPerson: OrgPersonIF): boolean {
/** This check is only for firm corrections, change, conversion, Corp extension and Corp conversion filings.
Does not apply to corps corrections */
// This check is only for firm corrections, change, conversion, Corp extension and Corp conversion filings.
// Does not apply to corps corrections.
const showConfirmNameChange = this.isFirmCorrectionFiling || this.isFirmChangeFiling ||
this.isFirmConversionFiling || this.isLimitedRestorationExtension || this.isLimitedRestorationToFull
Expand Down

0 comments on commit b653559

Please sign in to comment.