Skip to content

Commit

Permalink
Merge pull request #727 from ArwenQin/22938-Dissolve-Continuation-Bug
Browse files Browse the repository at this point in the history
22938 - Fix the bug when dissolute a ContIn
  • Loading branch information
ArwenQin authored Aug 26, 2024
2 parents 49e01ba + e01302a commit 823a5f2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.13",
"version": "5.11.14",
"private": true,
"appName": "Create UI",
"sbcName": "SBC Common Components",
Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@ export default class App extends Mixins(CommonMixin, DateMixin, FilingTemplateMi
if (!this.haveData) {
// assign the business id or temp id
const id = this.$route.query?.id as string
if (id?.startsWith('CP') || id?.startsWith('BC') || id?.startsWith('FM')) {
if (id?.startsWith('CP') || id?.startsWith('BC') || id?.startsWith('FM') || id?.startsWith('C')) {
this.setBusinessId(id)
} else {
this.setTempId(id)
Expand Down

0 comments on commit 823a5f2

Please sign in to comment.