Skip to content

Commit

Permalink
- updated sample env file with new Status URL (#585)
Browse files Browse the repository at this point in the history
- app version = 4.10.8
- fixed isCorrectionEditing getter

Co-authored-by: Severin Beauvais <[email protected]>
  • Loading branch information
severinbeauvais and Severin Beauvais authored Aug 30, 2024
1 parent e9a42c5 commit 65c9773
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ VUE_APP_LEGAL_API_URL="https://legal-api-dev.apps.silver.devops.gov.bc.ca"
VUE_APP_LEGAL_API_VERSION_2="/api/v2"
VUE_APP_NAICS_API_URL="https://legal-api-dev.apps.silver.devops.gov.bc.ca"
VUE_APP_NAICS_API_VERSION_2="/api/v2"
VUE_APP_STATUS_API_URL="https://status-api-dev.apps.silver.devops.gov.bc.ca"
VUE_APP_STATUS_API_URL="https://status-api-dev.apps.gold.devops.gov.bc.ca"
VUE_APP_STATUS_API_VERSION="/api/v1"
VUE_APP_PAY_API_URL="https://pay-api-dev.apps.silver.devops.gov.bc.ca"
VUE_APP_PAY_API_VERSION="/api/v1"
Expand Down
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.7",
"version": "4.10.8",
"private": true,
"appName": "Edit UI",
"sbcName": "SBC Common Components",
Expand Down
2 changes: 2 additions & 0 deletions src/store/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -781,6 +781,8 @@ export const useStore = defineStore('store', {

/** Whether the subject correction filing has any sections in editing mode. */
isCorrectionEditing (): boolean {
if (!this.isCorrectionFiling) return false

// NB: Folio Number, Detail, Certify and Staff Payment don't have an "editing" mode.
return (
this.stateModel.editingFlags.companyName ||
Expand Down

0 comments on commit 65c9773

Please sign in to comment.