From 13a6933caa41c5704982e8c0ed185578e9d46a4d Mon Sep 17 00:00:00 2001 From: Anurat Eiamphoklarp Date: Fri, 27 Sep 2024 00:17:10 +0700 Subject: [PATCH 1/2] #192 sorting dropdown typo fixed --- src/components/SortBy.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SortBy.jsx b/src/components/SortBy.jsx index db7b45c..91c6d7d 100644 --- a/src/components/SortBy.jsx +++ b/src/components/SortBy.jsx @@ -13,8 +13,8 @@ function SortBy({ sort, setSort, mode = "" }) { { mode === "section" ? ( - - ) : mode === "chapter" ? ( ): (<>) + + ) : mode === "chapter" ? ( ): (<>) } From e8dc77a98c0ebf36a7f9ed2dfe4072aaff9c3242 Mon Sep 17 00:00:00 2001 From: Amp Date: Fri, 27 Sep 2024 00:28:06 +0700 Subject: [PATCH 2/2] Update download/upload artifact to v4 on deploy workflow action --- .github/workflows/build-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index 4ec79e9..e252ffe 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -36,7 +36,7 @@ jobs: # run: npm run test - name: Uploading production-ready build files - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: production-files path: ./build @@ -49,7 +49,7 @@ jobs: steps: - name: Downloading artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: production-files path: ./build