Skip to content

Commit

Permalink
- app version = 5.6.24 (#611)
Browse files Browse the repository at this point in the history
- reordered sections so amalgamations don't use generic section

Co-authored-by: Severin Beauvais <severin.beauvais@gov.bc.ca>
  • Loading branch information
severinbeauvais and Severin Beauvais authored Jan 3, 2024
1 parent dc7f2b0 commit 63f8822
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 30 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-create-ui",
"version": "5.6.23",
"version": "5.6.24",
"private": true,
"appName": "Create UI",
"sbcName": "SBC Common Components",
Expand Down
55 changes: 28 additions & 27 deletions src/components/common/NameRequestInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,31 +74,6 @@
</div>
</template>

<!-- display changed name info -->
<template v-else-if="getNameRequestApprovedName">
<div class="section-container">
<v-row
id="changed-name-info"
no-gutters
>
<v-col
cols="12"
sm="3"
class="pr-4"
>
<label>Name</label>
</v-col>
<v-col
id="changed-name-value"
cols="12"
sm="9"
>
{{ getNameRequestApprovedName }}
</v-col>
</v-row>
</div>
</template>

<!-- display amalgamation adopted name info -->
<template v-else-if="isAmalgamationFiling && getCorrectNameOption === CorrectNameOptions.CORRECT_AML_ADOPT">
<div class="section-container">
Expand All @@ -109,7 +84,7 @@
<v-col
cols="12"
sm="3"
class="pr-4"
class="pt-1 pr-4"
>
<label>Resulting Business Name</label>
</v-col>
Expand Down Expand Up @@ -155,7 +130,7 @@
<v-col
cols="12"
sm="3"
class="pr-4"
class="pt-1 pr-4"
>
<label>Resulting Business Name</label>
</v-col>
Expand Down Expand Up @@ -204,6 +179,31 @@
</div>
</template>

<!-- display changed name info -->
<template v-else-if="getNameRequestApprovedName">
<div class="section-container">
<v-row
id="changed-name-info"
no-gutters
>
<v-col
cols="12"
sm="3"
class="pr-4"
>
<label>Name</label>
</v-col>
<v-col
id="changed-name-value"
cols="12"
sm="9"
>
{{ getNameRequestApprovedName }}
</v-col>
</v-row>
</div>
</template>

<!-- display other numbered company info -->
<template v-else>
<div class="section-container">
Expand Down Expand Up @@ -363,6 +363,7 @@ ul {
font-size: $px-20;
}
#numbered-company-title,
#changed-name-value,
#adopted-name-value {
font-size: $px-22;
Expand Down

0 comments on commit 63f8822

Please sign in to comment.