diff --git a/.github/environments/values.dev.yaml b/.github/environments/values.dev.yaml index faa53aa9..a77bf7c5 100644 --- a/.github/environments/values.dev.yaml +++ b/.github/environments/values.dev.yaml @@ -6,7 +6,7 @@ config: FRONTEND_CHES_ROADMAP_BCC: NRM.PermittingAndData@gov.bc.ca FRONTEND_CHES_SUBMISSION_CC: NRM.PermittingAndData@gov.bc.ca FRONTEND_COMS_APIPATH: https://coms-dev.api.gov.bc.ca/api/v1 - FRONTEND_COMS_BUCKETID: 1f9e1451-c130-4804-aeb0-b78b5b109c47 + FRONTEND_COMS_BUCKETID: 5aa446ca-23c5-4f3b-9300-d8623bc4d101 FRONTEND_GEOCODER_APIPATH: https://geocoder.api.gov.bc.ca FRONTEND_OIDC_AUTHORITY: https://dev.loginproxy.gov.bc.ca/auth/realms/standard FRONTEND_OIDC_CLIENTID: nr-permit-connect-navigator-service-5188 diff --git a/frontend/src/components/file/AdvancedFileUpload.vue b/frontend/src/components/file/AdvancedFileUpload.vue new file mode 100644 index 00000000..87f2ce21 --- /dev/null +++ b/frontend/src/components/file/AdvancedFileUpload.vue @@ -0,0 +1,202 @@ + + + + + diff --git a/frontend/src/components/file/DeleteDocument.vue b/frontend/src/components/file/DeleteDocument.vue index 996a0320..b70e60b8 100644 --- a/frontend/src/components/file/DeleteDocument.vue +++ b/frontend/src/components/file/DeleteDocument.vue @@ -8,8 +8,9 @@ import type { Document } from '@/types'; // Props type Props = { document: Document; + disabled?: boolean; }; -const props = withDefaults(defineProps(), {}); +const props = withDefaults(defineProps(), { disabled: false }); // Store const submissionStore = useSubmissionStore(); @@ -43,6 +44,7 @@ const confirmDelete = (document: Document) => {