Skip to content

Commit

Permalink
- app version = 5.11.10 (#723)
Browse files Browse the repository at this point in the history
- enable validation right away if filing is Change Requested
- added label props to effective data time component
- updated continuation authorization layout per designs
- now manage authorization files validity separately
- passed in custom values for radio button labels
- updated unit tests

Co-authored-by: Severin Beauvais <[email protected]>
  • Loading branch information
severinbeauvais and Severin Beauvais authored Jul 31, 2024
1 parent 5b33cc6 commit 2750b60
Show file tree
Hide file tree
Showing 9 changed files with 231 additions and 138 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.11.9",
"version": "5.11.10",
"private": true,
"appName": "Create UI",
"sbcName": "SBC Common Components",
Expand Down
6 changes: 6 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ export default class App extends Mixins(CommonMixin, DateMixin, FilingTemplateMi
@Getter(useStore) getEntityIdentifier!: string
@Getter(useStore) getFilingData!: Array<FilingDataIF>
@Getter(useStore) getFilingName!: FilingNames
@Getter(useStore) getFilingStatus!: FilingStatus
@Getter(useStore) getFilingType!: FilingTypes
@Getter(useStore) getHaveChanges!: boolean
@Getter(useStore) getOrgInformation!: OrgInformationIF
Expand Down Expand Up @@ -1364,6 +1365,11 @@ export default class App extends Mixins(CommonMixin, DateMixin, FilingTemplateMi
) {
this.setShowErrors(true)
}
// enable validation right away if user is changing a submitted filing
if (this.getFilingStatus === FilingStatus.CHANGE_REQUESTED) {
this.setShowErrors(true)
}
}
/** Whether the old webchat should be enabled. */
Expand Down
Loading

0 comments on commit 2750b60

Please sign in to comment.