From 6cbe977df1981abc2006fcc688c52cd06af1c802 Mon Sep 17 00:00:00 2001 From: H-Yeji Date: Thu, 31 Oct 2024 12:58:53 +0900 Subject: [PATCH 1/3] chore --- src/App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.vue b/src/App.vue index e763b43..f2d70c1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -54,5 +54,6 @@ export default { .font-style { font-family: 'NanumBarunGothic'; } + From 8bd89ff6a0f36f6f36aedcd32eb7f962cf7d1fc8 Mon Sep 17 00:00:00 2001 From: H-Yeji Date: Thu, 31 Oct 2024 13:20:04 +0900 Subject: [PATCH 2/3] =?UTF-8?q?chore:=20=EC=BA=90=EC=8B=9C=20=EB=AC=B4?= =?UTF-8?q?=ED=9A=A8=ED=99=94=20=EC=A3=BC=EC=84=9D=ED=95=B4=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/inong_fe_with_s3.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/inong_fe_with_s3.yml b/.github/workflows/inong_fe_with_s3.yml index 919f56e..c2aec03 100644 --- a/.github/workflows/inong_fe_with_s3.yml +++ b/.github/workflows/inong_fe_with_s3.yml @@ -45,6 +45,6 @@ jobs: run: aws s3 cp ./dist s3://www.inong.shop/ --recursive - # - name: invalidate cloudfront cache - # run: - # aws cloudfront create-invalidation --distribution-id EPLILOI974LXR --paths "/*" + - name: invalidate cloudfront cache + run: + aws cloudfront create-invalidation --distribution-id E311EUF9PYKNKB --paths "/*" From ae593df2b4d5a58d2a943c5633b7c2548ff5e69b Mon Sep 17 00:00:00 2001 From: Sejeong Kim Date: Thu, 31 Oct 2024 13:46:41 +0900 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20indexedDB=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/header/MainHeader.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/header/MainHeader.vue b/src/components/header/MainHeader.vue index 0a79987..5ba1bc6 100644 --- a/src/components/header/MainHeader.vue +++ b/src/components/header/MainHeader.vue @@ -671,7 +671,7 @@ export default { try{ // 트랜잭션 생성 (읽기/쓰기 모드) - let transaction = db.transaction(['notifications'], 'readwrite'); + let transaction = db.transaction('notifications', 'readwrite'); // Object Store 가져오기 let objectStore = transaction.objectStore('notifications');