From 6539111a6c98d200738f62e550809e667bc9f785 Mon Sep 17 00:00:00 2001 From: Julian Poyourow Date: Mon, 11 May 2020 23:31:22 -0700 Subject: [PATCH 1/2] Fix cache control headers in push_static_s3.sh --- scripts/deploy/push_static_s3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy/push_static_s3.sh b/scripts/deploy/push_static_s3.sh index 44275eb28..faf95069d 100755 --- a/scripts/deploy/push_static_s3.sh +++ b/scripts/deploy/push_static_s3.sh @@ -22,7 +22,7 @@ sync_to_s3 () { aws s3 sync $DIR s3://chefbook-static/frontend/$TAG/ \ --acl public-read \ - --cache-control "Cache-Control:max-age=${CACHE_AGE}, must-revalidate" + --cache-control "max-age=${CACHE_AGE}, must-revalidate" } # Push to tagged path From 565db9de55b30b3a76d33eaa593d0184d86c8c6d Mon Sep 17 00:00:00 2001 From: Julian Poyourow Date: Mon, 11 May 2020 23:33:16 -0700 Subject: [PATCH 2/2] Remove duplicate "v" from version at bottom of sidebar --- Frontend/src/app/app.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend/src/app/app.component.html b/Frontend/src/app/app.component.html index 30e2f5a71..e76fd38cc 100644 --- a/Frontend/src/app/app.component.html +++ b/Frontend/src/app/app.component.html @@ -33,7 +33,7 @@

- v{{ version }}
+ {{ version }}
Julian Poyourow