Skip to content

Commit

Permalink
- app version = 5.11.19 (#732)
Browse files Browse the repository at this point in the history
- imported latest Relationships Panel shared component
- adjusted whitespace
- passed in validation prop

Co-authored-by: Severin Beauvais <[email protected]>
  • Loading branch information
severinbeauvais and Severin Beauvais authored Sep 18, 2024
1 parent 05f1a01 commit 9863699
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "business-create-ui",
"version": "5.11.18",
"version": "5.11.19",
"private": true,
"appName": "Create UI",
"sbcName": "SBC Common Components",
Expand Down Expand Up @@ -37,7 +37,7 @@
"@bcrs-shared-components/limited-restoration-panel": "2.1.0",
"@bcrs-shared-components/mixins": "1.1.46",
"@bcrs-shared-components/nature-of-business": "1.2.14",
"@bcrs-shared-components/relationships-panel": "1.0.9",
"@bcrs-shared-components/relationships-panel": "1.0.40",
"@bcrs-shared-components/staff-comments": "1.3.15",
"@bcrs-shared-components/staff-payment": "2.1.15",
"@bcrs-shared-components/types": "1.0.1",
Expand Down
7 changes: 5 additions & 2 deletions src/components/Restoration/RestorationType.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<v-expand-transition>
<div v-if="isFullRestorationFiling">
<div
class="ml-8 tooltip-text"
class="ml-8 mt-2 tooltip-text"
:class="{ 'error-text': invalidSection }"
>
Please select
Expand All @@ -56,7 +56,9 @@
to the company at the time the company was dissolved:
</div>
<RelationshipsPanel
class="ml-8 mb-n2"
:draftRelationships="getRestoration.relationships"
:showValidationErrors="getShowErrors"
@changed="setRestorationRelationships($event)"
@valid="setRestorationTypeValid($event)"
/>
Expand All @@ -65,7 +67,7 @@

<v-radio
id="limited-radio-button"
class="pt-4 radio-button"
class="mt-4 radio-button"
label="Limited Restoration"
:value="RestorationTypes.LIMITED"
/>
Expand Down Expand Up @@ -175,6 +177,7 @@ export default class RestorationType extends Mixins(DateMixin, CommonMixin) {

<style lang="scss" scoped>
@import '@/assets/styles/theme.scss';
.tooltip-text {
color: $gray7;
}
Expand Down

0 comments on commit 9863699

Please sign in to comment.