diff --git a/.github/workflows/.deploy.yml b/.github/workflows/.deploy.yml index d5cdacb0f..6cc93001d 100644 --- a/.github/workflows/.deploy.yml +++ b/.github/workflows/.deploy.yml @@ -168,6 +168,7 @@ jobs: --set-string crunchy.pgBackRest.s3.accessKey="${{ secrets.S3_ACCESS_KEY }}" \ --set-string crunchy.pgBackRest.s3.secretKey="${{ secrets.S3_SECRET_ACCESS_KEY }}" \ --set-string global.secrets.clamavApiKey="${{ secrets.CLAMAV_API_KEY }}" \ + --set-string global.secrets.snowplowUrl="${{ secrets.SNOWPLOW_URL }}" \ ${{ inputs.params }} \ --timeout "$DEPLOY_TIMEOUT"m ./${{ github.event.repository.name }}-${{ steps.vars.outputs.semver }}.tgz diff --git a/admin-frontend/Caddyfile b/admin-frontend/Caddyfile index c83f7f573..6f6390bba 100644 --- a/admin-frontend/Caddyfile +++ b/admin-frontend/Caddyfile @@ -20,7 +20,8 @@ } respond `window.config = { "IS_ADMIN_DASHBOARD_AVAILABLE":"{$IS_ADMIN_DASHBOARD_AVAILABLE}", - "IS_ADMIN_ANALYTICS_AVAILABLE":"{$IS_ADMIN_ANALYTICS_AVAILABLE}" + "IS_ADMIN_ANALYTICS_AVAILABLE":"{$IS_ADMIN_ANALYTICS_AVAILABLE}", + "SNOWPLOW_URL":"{$SNOWPLOW_URL}" };` } root * /app/dist diff --git a/admin-frontend/src/App.vue b/admin-frontend/src/App.vue index 3cdd83af1..661c88c5e 100644 --- a/admin-frontend/src/App.vue +++ b/admin-frontend/src/App.vue @@ -118,6 +118,10 @@ a:hover { background-color: transparent !important; } +.v-card-title { + font-size: 1.35rem !important; //default is 1.25, but BCSans font looks wonky at that size. +} + .theme--light.application { background: #f1f1f1; } diff --git a/admin-frontend/src/components/AnalyticsPage.vue b/admin-frontend/src/components/AnalyticsPage.vue index c2304feae..a326e23e4 100644 --- a/admin-frontend/src/components/AnalyticsPage.vue +++ b/admin-frontend/src/components/AnalyticsPage.vue @@ -1,4 +1,15 @@