Skip to content

Commit

Permalink
fix: GEO-1261 - public site - abbreviated month names in the input fo…
Browse files Browse the repository at this point in the history
…rm (#873)
  • Loading branch information
banders authored Dec 10, 2024
1 parent b77d9e8 commit 81d7923
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 92 deletions.
62 changes: 0 additions & 62 deletions .github/workflows/.quota-check.yml

This file was deleted.

14 changes: 4 additions & 10 deletions .github/workflows/ci_cd_on_pr_dev_sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,9 @@ jobs:
if: (!github.event.pull_request.head.repo.fork)
uses: ./.github/workflows/.build.yml

check-quota:
name: Check Quota
needs: [builds]
uses: ./.github/workflows/.quota-check.yml
secrets: inherit

deploys:
name: Deploys
needs: [builds, check-quota]
needs: [builds]
uses: ./.github/workflows/.deploy.yml
secrets: inherit
with:
Expand All @@ -46,22 +40,22 @@ jobs:
admin-frontend-url: https://pay-transparency-pr-${{ github.event.number }}-admin-frontend.apps.silver.devops.gov.bc.ca
test-integration:
name: Integration
needs: [builds, check-quota, deploys]
needs: [builds, deploys]
uses: ./.github/workflows/.integration.yml
secrets: inherit
with:
backend-external-url: https://pay-transparency-pr-${{ github.event.number }}-backend-external.apps.silver.devops.gov.bc.ca/api
test-e2e:
name: E2E
needs: [builds, check-quota, deploys]
needs: [builds, deploys]
uses: ./.github/workflows/.e2e.yml
secrets: inherit
with:
frontend-url: https://pay-transparency-pr-${{ github.event.number }}-frontend.apps.silver.devops.gov.bc.ca
external-api-base-url: https://pay-transparency-pr-${{ github.event.number }}-backend-external.apps.silver.devops.gov.bc.ca
test-e2e-admin:
name: E2E-Admin
needs: [builds, check-quota, deploys]
needs: [builds, deploys]
uses: ./.github/workflows/.e2e-admin.yml
secrets: inherit
with:
Expand Down
15 changes: 4 additions & 11 deletions .github/workflows/ci_cd_on_pr_hotfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,9 @@ jobs:
needs: [validate]
uses: ./.github/workflows/.build.yml


check-quota:
name: Check Quota
needs: [builds]
uses: ./.github/workflows/.quota-check.yml
secrets: inherit

deploys:
name: Deploys
needs: [builds, check-quota]
needs: [builds]
uses: ./.github/workflows/.deploy.yml
secrets: inherit
with:
Expand All @@ -67,22 +60,22 @@ jobs:
admin-frontend-url: https://pay-transparency-pr-${{ github.event.number }}-admin-frontend.apps.silver.devops.gov.bc.ca
test-integration:
name: Integration
needs: [builds, check-quota, deploys]
needs: [builds, deploys]
uses: ./.github/workflows/.integration.yml
secrets: inherit
with:
backend-external-url: https://pay-transparency-pr-${{ github.event.number }}-backend-external.apps.silver.devops.gov.bc.ca/api
test-e2e:
name: E2E
needs: [builds, check-quota, deploys]
needs: [builds, deploys]
uses: ./.github/workflows/.e2e.yml
secrets: inherit
with:
frontend-url: https://pay-transparency-pr-${{ github.event.number }}-frontend.apps.silver.devops.gov.bc.ca
external-api-base-url: https://pay-transparency-pr-${{ github.event.number }}-backend-external.apps.silver.devops.gov.bc.ca
test-e2e-admin:
name: E2E-Admin
needs: [builds, check-quota, deploys]
needs: [builds, deploys]
uses: ./.github/workflows/.e2e-admin.yml
secrets: inherit
with:
Expand Down
18 changes: 9 additions & 9 deletions frontend/src/components/InputForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -772,18 +772,18 @@ export default {
.minusMonths(1)
.with(TemporalAdjusters.lastDayOfMonth()),
months: [
{ title: 'January', value: 1 },
{ title: 'February', value: 2 },
{ title: 'March', value: 3 },
{ title: 'April', value: 4 },
{ title: 'Jan.', value: 1 },
{ title: 'Feb.', value: 2 },
{ title: 'Mar.', value: 3 },
{ title: 'Apr.', value: 4 },
{ title: 'May', value: 5 },
{ title: 'June', value: 6 },
{ title: 'July', value: 7 },
{ title: 'August', value: 8 },
{ title: 'September', value: 9 },
{ title: 'October', value: 10 },
{ title: 'November', value: 11 },
{ title: 'December', value: 12 },
{ title: 'Aug.', value: 8 },
{ title: 'Sept.', value: 9 },
{ title: 'Oct.', value: 10 },
{ title: 'Nov.', value: 11 },
{ title: 'Dec.', value: 12 },
],
fileAccept: '.csv',
fileRules: [],
Expand Down

0 comments on commit 81d7923

Please sign in to comment.